Hugo-Nginx-ALT

Overview

This is an alternate flavour containing the hugo website builder and nginx, a webserver.

It will take in sources for data and themes and generate a site. It can also send the site content to an S3 host.

This is a minimal config with no SSL configured as this is expected to be handled by a reverse proxy.

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

Disclaimer

It is advised to run this image behind a proxy. The directory permissions on the hugo folder are very permissive. Run the hugo-nginx-alt pot images behind a proxy with access control.

Installation

  • Create a ZFS data set on the parent system beforehand zfs create -o mountpoint=/mnt/<sitename> zroot/jaildata/hugoalt
  • 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/<sitename> -m /mnt
  • Optionally copy in customfile.tgz: pot copy-in -p <jailname> -s /path/to/customfile.tgz -d /root/customfile.tgz
  • Optionally copy in your own customscript.sh pot copy-in -p <jailname> -s /path/to/customscript.sh -d /root/customscript.sh
  • Optionally copy in SSH private key for custom gitserver ssh access. Make sure destination is /root/sshkey: pot copy-in -p <jailname> -s /path/to/id_rsa -d /root/sshkey
  • Optionally export the ports after creating the jail: pot export-ports -p <jailname> -e 80:80
  • 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 SERVERNAME=<fqdn> \
    -E DOMAINNAME=<baseURL value> \
    -E IP=<IP address> \
    -E SITENAME=<site name> \
    -E GITEMAIL=<git user email> \
    -E GITUSER=<git username> \
    -E THEMESRC=<git url> \
    -E THEMENAME=<name of theme, will become directory name> \
    [ -E CUSTOMDIR=<custom dir inside huge sitename> ] \
    [ -E CUSTOMFILE=1 ] \
    [ -E CONTENTSRC=<git url | git@githost:reponame> ] \
    [ -E GITPORT=<ssh access port for custom git server> ] \
    [ -E GITHOST=<IP address of custom gitserver> ] \
    [ -E MYTITLE="site title in quotes" ] \
    [ -E MYLANG=<language code> ] \
    [ -E BUCKETHOST=<ip or hostname S3 host> ] \
    [ -E BUCKETPORT=<port of S3 host, 443 or 9000> ]\
    [ -E BUCKETUSER=<s3 username> ] \
    [ -E BUCKETPASS=<s3 password> ] \
    [ -E BUCKETNAME=<name of bucket> ] \
    [ -E REMOTELOG=<IP syslog-ng server> ]
    

The NODENAME parameter is the name of the node.

The DATACENTER parameter is the name of the datacenter. The REGION parameter is to set “east” or “west” or “global” (default).

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.

The SERVERNAME parameter is the fully qualified domain name to configure nginx with.

The DOMAINNAME parameter is the domain name of the final destination, or baseURL for hugo. Include http:// or https://.

The IP parameter is the IP address of the pot image.

The SITENAME parameter is the name of the hugo site and affects directory naming.

The GITEMAIL parameter is the email address to use for a git username.

The GITUSER parameter is the git username associated with the email address.

The THEMESRC parameter is the URL to the theme git source.

The THEMENAME parameter is the name of the theme. This will become a directory name so no spaces or punctuation.

The optional CUSTOMDIR parameter is a custom directory to create inside the hugo installation in SITENAME.

The optional CUSTOMFILE parameter, if set to 1, will copy in your own customfile.tgz which will be extracted to /mnt/{SITENAME}/. This would be a custom hugo.yaml, static microblog posts or about.md pages and images for static dir.

The optional CONTENTSRC parameter is the HTTP url of a github source with custom content pages and static files, or git@githost:repo.git for a custom git server. You can specifically use git@githost and pass in the IP and port with the following parameters. Make sure to specify correct repo name.

The optional GITPORT parameter is the SSH port for a custom git server instance. Set this if passing in git@githost:repo.git for CONTENTSRC.

The optional GITHOST parameter is the hostname or IP address of a custom git server instance. Set this if passing in git@githost:repo.git for CONTENTSRC. Make sure to copy in the private SSH key for the user in authorized_keys on git server to /root/sshkey.

The optional MYTITLE parameter is the site title. A default title will be set if not enabled.

The optional MYLANG parameter is the language code. Defaults to en over the hugo default en-us.

The optional parameters BUCKETHOST, BUCKETPORT, BUCKETUSER, BUCKETPASS and BUCKETNAME refer to credentials for minio-client to perform sync of HTML files to a bucket.

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

Usage

Start hugo manually (not necessary):

cd /var/db/SITENAME && hugo

To access hugo:

  • http://hugo-host-name

The default site is blank.

customfile.tgz

If you wish to include a custom setup for hugo, you can create a file customfile.tgz with the following folder structure:

./config.toml
./assets
./static
./static/mylogo.png
./content/info.md
./content/micro/news.md
./content/micro/about.md
./layouts/partials/head/custom.html

Make sure to copy-in to /root/customfile.tgz and set -E CUSTOMFILE=1 in the parameters.

customfile.sh.example

There is an example customscript.sh you can copy in to /root/customscript.sh.

Check out the file customscript.sh.example in the git folder.

Persistent storage

Persistent storage is not used in this version of the hugo pot image. To update re-run the pot image and rebuild the site.

Getting Started

How To Use The Ready-Made Image

FreeBSD 14.0:
pot import -p hugo-nginx-alt-amd64-14_0 -t 0.3.6 -U https://potluck.honeyguide.net/hugo-nginx-alt

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p hugo-nginx-alt-amd64-14_0 -t 0.3.6 -C potluck.pub -U https://potluck.honeyguide.net/hugo-nginx-alt

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 hugo-nginx-alt-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/hugo-nginx-alt 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.3

  • Version bump for new base image
  • Import SSH key to authenticate to custom git server
  • Add useful customscript.sh example
  • Fix typos in README
  • Fix node_exporter ZFS collector
  • Minor tweaks to git steps and SSH config
  • Copy layouts folder from customgit too
  • Make S3 host port an option
  • Fix permissions, remove legacy permission setting, delete copied in key

0.2

  • Version bump for new base image
  • FBSD14 base image
  • Add ability to run copied in customscript.sh file automatically if exists
  • Add various toolsets for node, npm, ruby, toml-to-yaml conversion
  • Make language a parameter, add additional settings to hugo.yaml.in
  • Fix README references to config.toml as using hugo.yaml format
  • Fix missing TITLE parameter
  • Set a default title if not set, export variables
  • Change order of copying so custom content is after theme site icons and css
  • Make consistent parameter naming convention for MYTITLE and MYLANG
  • Bug-fixing custom content copy by making sure directories exist
  • Add logic to check if custom content has directories

0.1

  • Adjustment to setup, don’t use persistent storage as files going to S3 anyway and rebuild on every image startup
  • Use /var/db/$SITENAME instead of persistent storage in /mnt
  • Use a custom hugo.yaml file with variables set from parameters

0.0

  • Alternate version Hugo with site and theme import from git sources as submodules
  • No SSH access currently
  • No SSL
  • Update variables in README
  • Adjust git submodule commands
  • Adjust scripts with directory creation, fix typo
  • Fix theme import error, disable ssh
  • More adjustments to theme import
  • Generate hugo site with yaml config
  • Include passed in theme dir as theme in yaml config

These images were built on Sat Apr 20 18:54:32 UTC 2024

Manual Image Download Links

hugo-nginx-alt-amd64-14_0_0.3.6.xz ( )
hugo-nginx-alt-amd64-14_0_0.3.6.xz.skein ( ) hugo-nginx-alt-amd64-14_0_0.3.6.xz.skein.sig ( ) hugo-nginx-alt-amd64-14_0_0.3.6.xz.meta ( )

Jenkins Pot Creation Logs

hugo-nginx-alt-amd64-14_0_0.3.6:


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

step "Disable SSH"
service sshd onedisable || true

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

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

step "Install package nginx"
pkg install -y nginx

step "Install package gohugo"
pkg install -y gohugo

step "Install package goaccess"
pkg install -y goaccess

step "Install package node20"
pkg install -y node20

step "Install package www/npm"
pkg install -y www/npm

step "Install package yarn-node20"
pkg install -y yarn-node20

step "Install package rubygem-bundler"
pkg install -y rubygem-bundler

step "Install package ruby"
pkg install -y ruby

step "Install package devel/ruby-build"
pkg install -y devel/ruby-build

step "Install package rbenv"
pkg install -y rbenv

step "Install package node_exporter"
pkg install -y node_exporter

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

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

step "Install package tmux"
pkg install -y tmux

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

hugo-nginx-alt/hugo-nginx-alt+1:
hugo-nginx-alt/hugo-nginx-alt+1.sh:

hugo-nginx-alt/hugo-nginx-alt+2:
hugo-nginx-alt/hugo-nginx-alt+2.sh:

hugo-nginx-alt/hugo-nginx-alt+3:
hugo-nginx-alt/hugo-nginx-alt+3.sh:

hugo-nginx-alt/hugo-nginx-alt+4:
hugo-nginx-alt/hugo-nginx-alt+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/hugo-nginx-alt-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/hugo-nginx-alt-amd64-14_0/m
=====>  Flavour: fbsd-update
=====>  Starting hugo-nginx-alt-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot hugo-nginx-alt-amd64-14_0
=====>  Pot hugo-nginx-alt-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=hugo-nginx-alt-amd64-14_0 host.hostname=hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p6 path=/mnt/srv/pot/jails/hugo-nginx-alt-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:40:c9:bd:7d: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.

Sat Apr 20 18:49:28 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on hugo-nginx-alt-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-p6.
No updates are available to install.
=====>  Stop the pot hugo-nginx-alt-amd64-14_0
=====>  Remove p466240e3612335 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/dev
=====>  Flavour: hugo-nginx-alt
=====>  Executing hugo-nginx-alt pot commands on hugo-nginx-alt-amd64-14_0
=====>  mount /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/hugo-nginx-alt.d/local copied in the pot hugo-nginx-alt-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/dev is already unmounted
=====>  Starting hugo-nginx-alt-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot hugo-nginx-alt-amd64-14_0
=====>  Pot hugo-nginx-alt-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=hugo-nginx-alt-amd64-14_0 host.hostname=hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p6 path=/mnt/srv/pot/jails/hugo-nginx-alt-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:3e:cd:72:78: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.

Sat Apr 20 18:50:00 UTC 2024
/usr/local/etc/pot/flavours/hugo-nginx-alt.sh -> /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/tmp/hugo-nginx-alt.sh
=====>  Executing hugo-nginx-alt script on hugo-nginx-alt-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: Disable SSH
sshd disabled in /etc/rc.conf
Step 6: Create /usr/local/etc/rc.d
Step 7: Install package consul
Updating FreeBSD repository catalogue...
[hugo-nginx-alt-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.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching pkg-1.21.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading pkg from 1.21.1 to 1.21.2...
[hugo-nginx-alt-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.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.18.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-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)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.18.1_1: ..... done
Step 8: 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.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching openssl-3.0.13_3,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading openssl from 3.0.13_2,1 to 3.0.13_3,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting openssl-3.0.13_3,1: .......... done
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 yj
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:
	yj: 5.1.0_17

Number of packages to be installed: 1

The process will require 3 MiB more space.
1 MiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching yj-5.1.0_17.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing yj-5.1.0_17...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting yj-5.1.0_17: .... done
Step 15: 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 16: 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 17: 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 18: Install package git
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 26 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	expat: 2.6.2
	git: 2.44.0
	libffi: 3.4.4_1
	mpdecimal: 4.0.0
	p5-Authen-SASL: 2.17
	p5-CGI: 4.64
	p5-Clone: 0.46
	p5-Digest-HMAC: 1.04
	p5-Encode-Locale: 1.05
	p5-Error: 0.17029
	p5-GSSAPI: 0.28_2
	p5-HTML-Parser: 3.82
	p5-HTML-Tagset: 3.24
	p5-HTTP-Date: 6.06
	p5-HTTP-Message: 6.45
	p5-IO-HTML: 1.004
	p5-IO-Socket-IP: 0.42
	p5-IO-Socket-SSL: 2.085
	p5-LWP-MediaTypes: 6.04
	p5-Mozilla-CA: 20240313
	p5-Net-SSLeay: 1.94
	p5-TimeDate: 2.33,1
	p5-URI: 5.28
	pcre2: 10.43
	perl5: 5.36.3_1
	python39: 3.9.18_2

Number of packages to be installed: 26

The process will require 228 MiB more space.
43 MiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/26] Fetching p5-Net-SSLeay-1.94.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/26] Fetching p5-IO-Socket-SSL-2.085.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/26] Fetching p5-HTTP-Date-6.06.pkg: ... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/26] Fetching mpdecimal-4.0.0.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/26] Fetching p5-GSSAPI-0.28_2.pkg: ........ done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/26] Fetching python39-3.9.18_2.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/26] Fetching p5-IO-Socket-IP-0.42.pkg: ...... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/26] Fetching p5-URI-5.28.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/26] Fetching p5-CGI-4.64.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/26] Fetching p5-Encode-Locale-1.05.pkg: .. done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/26] Fetching perl5-5.36.3_1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/26] Fetching p5-HTML-Parser-3.82.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/26] Fetching p5-Mozilla-CA-20240313.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/26] Fetching p5-LWP-MediaTypes-6.04.pkg: .... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/26] Fetching pcre2-10.43.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/26] Fetching libffi-3.4.4_1.pkg: ......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/26] Fetching p5-TimeDate-2.33,1.pkg: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/26] Fetching p5-IO-HTML-1.004.pkg: .. done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/26] Fetching p5-Clone-0.46.pkg: .. done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/26] Fetching p5-Digest-HMAC-1.04.pkg: .. done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/26] Fetching p5-Error-0.17029.pkg: ...... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/26] Fetching p5-HTML-Tagset-3.24.pkg: . done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/26] Fetching expat-2.6.2.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/26] Fetching p5-HTTP-Message-6.45.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/26] Fetching git-2.44.0.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/26] Fetching p5-Authen-SASL-2.17.pkg: ......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/26] Installing perl5-5.36.3_1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/26] Extracting perl5-5.36.3_1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/26] Installing p5-TimeDate-2.33,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/26] Extracting p5-TimeDate-2.33,1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/26] Installing p5-HTTP-Date-6.06...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/26] Extracting p5-HTTP-Date-6.06: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/26] Installing p5-URI-5.28...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/26] Extracting p5-URI-5.28: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/26] Installing p5-Encode-Locale-1.05...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/26] Extracting p5-Encode-Locale-1.05: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/26] Installing p5-LWP-MediaTypes-6.04...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/26] Extracting p5-LWP-MediaTypes-6.04: ........ done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/26] Installing p5-IO-HTML-1.004...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/26] Extracting p5-IO-HTML-1.004: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/26] Installing p5-Clone-0.46...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/26] Extracting p5-Clone-0.46: ......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/26] Installing p5-HTML-Tagset-3.24...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/26] Extracting p5-HTML-Tagset-3.24: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/26] Installing p5-HTTP-Message-6.45...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/26] Extracting p5-HTTP-Message-6.45: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/26] Installing p5-Net-SSLeay-1.94...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/26] Extracting p5-Net-SSLeay-1.94: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/26] Installing mpdecimal-4.0.0...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/26] Extracting mpdecimal-4.0.0: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/26] Installing p5-GSSAPI-0.28_2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/26] Extracting p5-GSSAPI-0.28_2: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/26] Installing p5-IO-Socket-IP-0.42...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/26] Extracting p5-IO-Socket-IP-0.42: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/26] Installing p5-HTML-Parser-3.82...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/26] Extracting p5-HTML-Parser-3.82: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/26] Installing p5-Mozilla-CA-20240313...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/26] Extracting p5-Mozilla-CA-20240313: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/26] Installing libffi-3.4.4_1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/26] Extracting libffi-3.4.4_1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/26] Installing p5-Digest-HMAC-1.04...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/26] Extracting p5-Digest-HMAC-1.04: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/26] Installing p5-IO-Socket-SSL-2.085...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/26] Extracting p5-IO-Socket-SSL-2.085: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/26] Installing python39-3.9.18_2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/26] Extracting python39-3.9.18_2: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/26] Installing p5-CGI-4.64...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/26] Extracting p5-CGI-4.64: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/26] Installing pcre2-10.43...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/26] Extracting pcre2-10.43: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/26] Installing p5-Error-0.17029...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/26] Extracting p5-Error-0.17029: ......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/26] Installing expat-2.6.2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/26] Extracting expat-2.6.2: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/26] Installing p5-Authen-SASL-2.17...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/26] Extracting p5-Authen-SASL-2.17: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/26] Installing git-2.44.0...
===> Creating groups.
Creating group 'git_daemon' with gid '964'.
===> Creating users
Creating user 'git_daemon' with uid '964'.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/26] Extracting git-2.44.0: .......... done
=====
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 git-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 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.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching nginx-1.24.0_16,3.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-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'.
[hugo-nginx-alt-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 gohugo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 9 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	giflib: 5.2.1_1
	gohugo: 0.123.8_2,1
	jbigkit: 2.1_2
	jpeg-turbo: 3.0.2
	libdeflate: 1.20
	libsass: 3.6.6
	png: 1.6.43
	tiff: 4.4.0_3
	webp: 1.3.2_1

Number of packages to be installed: 9

The process will require 90 MiB more space.
18 MiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/9] Fetching png-1.6.43.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/9] Fetching jpeg-turbo-3.0.2.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/9] Fetching gohugo-0.123.8_2,1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/9] Fetching giflib-5.2.1_1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/9] Fetching jbigkit-2.1_2.pkg: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/9] Fetching webp-1.3.2_1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/9] Fetching libsass-3.6.6.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/9] Fetching tiff-4.4.0_3.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/9] Fetching libdeflate-1.20.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/9] Installing jpeg-turbo-3.0.2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/9] Extracting jpeg-turbo-3.0.2: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/9] Installing jbigkit-2.1_2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/9] Extracting jbigkit-2.1_2: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/9] Installing libdeflate-1.20...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/9] Extracting libdeflate-1.20: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/9] Installing png-1.6.43...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/9] Extracting png-1.6.43: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/9] Installing giflib-5.2.1_1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/9] Extracting giflib-5.2.1_1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/9] Installing tiff-4.4.0_3...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/9] Extracting tiff-4.4.0_3: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/9] Installing webp-1.3.2_1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/9] Extracting webp-1.3.2_1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/9] Installing libsass-3.6.6...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/9] Extracting libsass-3.6.6: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/9] Installing gohugo-0.123.8_2,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/9] Extracting gohugo-0.123.8_2,1: .......... done
Step 21: Install package goaccess
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:
	goaccess: 1.9.1_1
	libmaxminddb: 1.9.1

Number of packages to be installed: 2

The process will require 1 MiB more space.
422 KiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching libmaxminddb-1.9.1.pkg: ......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching goaccess-1.9.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libmaxminddb-1.9.1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libmaxminddb-1.9.1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing goaccess-1.9.1_1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting goaccess-1.9.1_1: .......... done
Step 22: Install package node20
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 5 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	brotli: 1.1.0,1
	c-ares: 1.28.1
	icu: 74.2_1,1
	libuv: 1.48.0
	node20: 20.12.2

Number of packages to be installed: 5

The process will require 96 MiB more space.
23 MiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Fetching c-ares-1.28.1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Fetching icu-74.2_1,1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Fetching libuv-1.48.0.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Fetching brotli-1.1.0,1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Fetching node20-20.12.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Installing c-ares-1.28.1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Extracting c-ares-1.28.1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Installing icu-74.2_1,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Extracting icu-74.2_1,1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Installing libuv-1.48.0...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Extracting libuv-1.48.0: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Installing brotli-1.1.0,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Extracting brotli-1.1.0,1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Installing node20-20.12.2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Extracting node20-20.12.2: .......... done
=====
Message from node20-20.12.2:

--
Note: If you need npm (Node Package Manager), please install www/npm.
Step 23: Install package www/npm
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:
	gmake: 4.4.1
	npm: 10.5.1
	npm-node20: 10.5.1

Number of packages to be installed: 3

The process will require 13 MiB more space.
2 MiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching npm-node20-10.5.1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching gmake-4.4.1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching npm-10.5.1.pkg: . done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing gmake-4.4.1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting gmake-4.4.1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing npm-node20-10.5.1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting npm-node20-10.5.1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing npm-10.5.1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting npm-10.5.1: ... done
Step 24: Install package yarn-node20
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:
	yarn-node20: 1.22.19

Number of packages to be installed: 1

The process will require 5 MiB more space.
940 KiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching yarn-node20-1.22.19.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing yarn-node20-1.22.19...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting yarn-node20-1.22.19: .......... done
Step 25: Install package rubygem-bundler
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libedit: 3.1.20230828_1,1
	libunwind: 20240221
	libyaml: 0.2.5
	ruby: 3.2.3,1
	ruby32-gems: 3.5.9
	rubygem-bundler: 2.5.9,1

Number of packages to be installed: 6

The process will require 50 MiB more space.
10 MiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Fetching libedit-3.1.20230828_1,1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Fetching ruby-3.2.3,1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Fetching rubygem-bundler-2.5.9,1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Fetching libyaml-0.2.5.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Fetching libunwind-20240221.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Fetching ruby32-gems-3.5.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Installing libedit-3.1.20230828_1,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Extracting libedit-3.1.20230828_1,1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Installing libyaml-0.2.5...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Extracting libyaml-0.2.5: ......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Installing libunwind-20240221...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Extracting libunwind-20240221: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Installing ruby-3.2.3,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Extracting ruby-3.2.3,1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Installing ruby32-gems-3.5.9...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Extracting ruby32-gems-3.5.9: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Installing rubygem-bundler-2.5.9,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Extracting rubygem-bundler-2.5.9,1: .......... done
=====
Message from ruby-3.2.3,1:

--
Some of the standard commands and libraries are provided as separate
ports for ease of upgrading:

	devel/ruby-gems:		gem - RubyGems package manager
	devel/rubygem-debug:		debug - Debugging functionality for Ruby
	devel/rubygem-erb:		erb - Templating system for Ruby
	devel/rubygem-irb:		irb - Interactive Ruby
	devel/rubygem-minitest:		minitest - Complete suite of testing facilities
	devel/rubygem-power_assert:	power_assert - Power Assert for Ruby
	devel/rubygem-rake:		rake - Ruby Make
	devel/rubygem-rbs:		rbs - Language for type signatures for Ruby and standard library definitions
	devel/rubygem-rdoc:		rdoc - Ruby Documentation System
	devel/rubygem-test-unit:	test-unit - Unit testing framework for Ruby
	devel/rubygem-typeprof:		typeprof - Type analysis tool for Ruby code
	ftp/rubygem-net-ftp:		net-ftp - Support for the File Transfer Protocol
	mail/rubygem-net-imap:		net-imap - Ruby client api for Internet Message Access Protocol
	mail/rubygem-net-pop:		net-pop - Ruby client library for POP3
	mail/rubygem-net-smtp:		net-smtp - Simple Mail Transfer Protocol client library for Ruby
	math/rubygem-matrix:		matrix - Implementation of Matrix and Vector classes
	math/rubygem-prime:		prime - Prime numbers and factorization library
	sysutils/rubygem-bundler:	bundler - Tool that manages gem dependencies for ruby applications
	textproc/rubygem-rexml:		rexml - XML toolkit for Ruby
	www/rubygem-rss:		rss - Family of libraries that support various formats of XML "feeds"

And some of the standard libraries are provided as separate ports
since they require extra dependencies:

	databases/rubygem-dbm:	DBM module
	databases/rubygem-gdbm:	GDBM module

Install them as occasion demands.
Step 26: Install package ruby
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 27: Install package devel/ruby-build
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 5 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	autoconf: 2.72
	autoconf-switch: 20220527
	m4: 1.4.19_1,1
	rbenv: 1.2.0
	ruby-build: 20240319

Number of packages to be installed: 5

The process will require 4 MiB more space.
940 KiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Fetching ruby-build-20240319.pkg: ... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Fetching rbenv-1.2.0.pkg: .. done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Fetching m4-1.4.19_1,1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Fetching autoconf-switch-20220527.pkg: . done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Fetching autoconf-2.72.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Installing m4-1.4.19_1,1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Extracting m4-1.4.19_1,1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Installing autoconf-switch-20220527...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Extracting autoconf-switch-20220527: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Installing rbenv-1.2.0...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Extracting rbenv-1.2.0: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Installing autoconf-2.72...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Extracting autoconf-2.72: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Installing ruby-build-20240319...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Extracting ruby-build-20240319: .......... done
=====
Message from rbenv-1.2.0:

--
Load rbenv automatically by appending
the following to ~/.bash_profile:

   eval "$(rbenv init -)"
Step 28: Install package rbenv
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 29: 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.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.6.1_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.6.1_4...
[hugo-nginx-alt-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 30: Install package syslog-ng
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):

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

Number of packages to be installed: 6

The process will require 31 MiB more space.
5 MiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Fetching ivykis-0.43_1.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Fetching py39-packaging-23.2.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Fetching json-c-0.17.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Fetching e2fsprogs-libuuid-1.47.0.pkg: ....... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Fetching glib-2.80.0,2.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Fetching syslog-ng-4.6.0_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Installing py39-packaging-23.2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/6] Extracting py39-packaging-23.2: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Installing ivykis-0.43_1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/6] Extracting ivykis-0.43_1: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Installing json-c-0.17...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/6] Extracting json-c-0.17: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Installing e2fsprogs-libuuid-1.47.0...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/6] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Installing glib-2.80.0,2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/6] Extracting glib-2.80.0,2: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Installing syslog-ng-4.6.0_2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/6] Extracting syslog-ng-4.6.0_2: .......... 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 syslog-ng-4.6.0_2:

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

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

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

        syslog_ng_enable="YES"

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

        syslogd_enable="NO"

4. Shut down the standard FreeBSD syslogd:

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

5. Start syslog-ng:

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

New packages to be INSTALLED:
	minio-client: 2024.01.31.08.59.40_1

Number of packages to be installed: 1

The process will require 26 MiB more space.
8 MiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching minio-client-2024.01.31.08.59.40_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing minio-client-2024.01.31.08.59.40_1...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting minio-client-2024.01.31.08.59.40_1: .... done
Step 32: Install package tmux
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:
	libevent: 2.1.12
	tmux: 3.3a_2

Number of packages to be installed: 2

The process will require 3 MiB more space.
779 KiB to be downloaded.
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching libevent-2.1.12.pkg: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching tmux-3.3a_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libevent-2.1.12...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libevent-2.1.12: .......... done
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing tmux-3.3a_2...
[hugo-nginx-alt-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting tmux-3.3a_2: .......... done
Step 33: Clean package installation
Checking integrity... done (0 conflicting)
Nothing to do.
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 34: Clean cook artifacts
Step 35: Install pot local
Step 36: Set file ownership on cook scripts
Step 37: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 38: Create rc.d script to start cook
creating rc.d script to start cook
Step 39: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 40: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot hugo-nginx-alt-amd64-14_0
=====>  Remove p466240e5712335 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/hugo-nginx-alt-amd64-14_0/m/dev
===>  exporting hugo-nginx-alt-amd64-14_0 @ 1713639127 to /tmp/hugo-nginx-alt-amd64-14_0_0.3.6.xz

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