FreeBSD-Potluck

Overview

This flavour is a bare base pot image. Just FreeBSD-14.0.

Installation

  • Create your local jail from the image or the flavour files.
  • Clone the local jail
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
      -E NODENAME=<nodename> \
      -E IP=<IP address of this system>
    
  • Start the jail

Required Paramaters

The NODENAME parameter defines the name of this node.

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

Usage

This is a base image to be used for layered pot images. Documentation pending.

Getting Started

How To Use The Ready-Made Image

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

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

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 freebsd-potluck-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/freebsd-potluck 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.0.23

  • Version bump for new quarterlies

0.0.22

  • Version bump for FBSD14 base image

0.0.21

  • Version bump after ZFS fix

0.0.20

  • Version bump for security fixes

0.0.19

  • Version bump for curl update

0.0.18

  • Version bump for new quarterlies

0.0.17

  • Version bump for kernel/pkg security patches
  • New version jq

0.0.16

  • Version bump for kernel/pkg security patches

0.0.15

  • Version bump for new quarterly packages

0.0.14

  • New base image for FreeBSD-13.2 (second attempt)

0.0.13

  • Revert to 13.1 kernel
  • Signify signatures added during build process

0.0.12

  • Rebuild to attend to build system problems

0.0.11

  • Rebuild for 13.2 with build scripts corrected for version

0.0.10

  • New base image for FreeBSD-13.2

0.0.9

  • Version bump for new quarterly packages

0.0.8

  • Version bump for rebuild
  • Fix FreeBSD-SA-23:02.openssh
  • Fix FreeBSD-SA-23:03.openssl

0.0.7

  • Explictly install ca_root_nss

0.0.6

  • Version bump for p3 rebuild
  • Add checklist

0.0.5

  • Simplifying base image to remove unnecessary stuff

0.0.4

  • Disabling sshd from the start, removing disable bit in cook script

0.0.3

  • Disable cook service where applicable
  • Remove required_args values in base image

0.0.2

  • Update for FreeBSD-13.1 base image

0.0.1

  • This is a bare image intended to be used as a base image for layered pot images

These images were built on Sun Apr 14 17:05:47 UTC 2024

Manual Image Download Links

freebsd-potluck-amd64-14_0_0.0.23.xz ( )
freebsd-potluck-amd64-14_0_0.0.23.xz.skein ( ) freebsd-potluck-amd64-14_0_0.0.23.xz.skein.sig ( ) freebsd-potluck-amd64-14_0_0.0.23.xz.meta ( )

Jenkins Pot Creation Logs

freebsd-potluck-amd64-14_0_0.0.23:


freebsd-potluck/freebsd-potluck:
freebsd-potluck/freebsd-potluck.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 sshd"
service sshd onestop || true
service sshd onedisable || true

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

step "Install package openssl"
pkg install -y openssl

step "Install package sudo"
pkg install -y sudo

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 "Clean package installation"
pkg clean -y

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

step "Remove pre-existing cook script (if any)"
rm -rf /usr/local/bin/cook

exit_ok

freebsd-potluck/freebsd-potluck+1:
freebsd-potluck/freebsd-potluck+1.sh:

freebsd-potluck/freebsd-potluck+2:
freebsd-potluck/freebsd-potluck+2.sh:

freebsd-potluck/freebsd-potluck+3:
freebsd-potluck/freebsd-potluck+3.sh:

freebsd-potluck/freebsd-potluck+4:
freebsd-potluck/freebsd-potluck+4.sh:
===>  Creating a new pot
===>  pot name     : freebsd-potluck-amd64-14_0
===>  type         : single
===>  base         : 14.0
===>  pot_base     : 
===>  level        : 0
===>  network-type : public-bridge
===>  network-stack: ipv4
===>  ip           : 10.192.0.3
===>  bridge       : 
===>  dns          : inherit
===>  flavours     : fbsd-update freebsd-potluck
===>  Fetching FreeBSD 14.0
===>  Extract the tarball
=====>  Flavour: fbsd-update
=====>  Starting freebsd-potluck-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m/tmp
defaultrouter: NO -> 10.192.0.1
===>  Starting the pot freebsd-potluck-amd64-14_0
=====>  Pot freebsd-potluck-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=freebsd-potluck-amd64-14_0 host.hostname=freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE path=/mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m persist vnet vnet.interface=epair1b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair1b.
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 0x8
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair1b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:ab:b8:ed:81:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Clearing /tmp (X related).
Starting syslogd.
Starting cron.

Sun Apr 14 16:57:41 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on freebsd-potluck-amd64-14_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 14.0-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 138 patches.....10....20....30....40....50....60....70....80....90....100....110....120....130.... done.
Applying patches... done.
The following files will be updated as part of updating to
14.0-RELEASE-p6:
/bin/df
/bin/freebsd-version
/bin/mv
/etc/defaults/rc.conf
/etc/periodic/daily/480.leapfile-ntpd
/lib/libbe.so.1
/lib/libc.so.7
/lib/libspl.so.2
/lib/libufs.so.7
/lib/libutil.so.9
/lib/libzfs.so.4
/lib/libzpool.so.2
/libexec/ld-elf.so.1
/libexec/ld-elf32.so.1
/rescue/[
/rescue/bectl
/rescue/bsdlabel
/rescue/bunzip2
/rescue/bzcat
/rescue/bzip2
/rescue/camcontrol
/rescue/cat
/rescue/ccdconfig
/rescue/chflags
/rescue/chgrp
/rescue/chio
/rescue/chmod
/rescue/chown
/rescue/chroot
/rescue/clri
/rescue/cp
/rescue/csh
/rescue/date
/rescue/dd
/rescue/devfs
/rescue/df
/rescue/dhclient
/rescue/disklabel
/rescue/dmesg
/rescue/dump
/rescue/dumpfs
/rescue/dumpon
/rescue/echo
/rescue/ed
/rescue/ex
/rescue/expr
/rescue/fastboot
/rescue/fasthalt
/rescue/fdisk
/rescue/fetch
/rescue/fsck
/rescue/fsck_4.2bsd
/rescue/fsck_ffs
/rescue/fsck_msdosfs
/rescue/fsck_ufs
/rescue/fsdb
/rescue/fsirand
/rescue/gbde
/rescue/geom
/rescue/getfacl
/rescue/glabel
/rescue/gpart
/rescue/groups
/rescue/gunzip
/rescue/gzcat
/rescue/gzip
/rescue/halt
/rescue/head
/rescue/hostname
/rescue/id
/rescue/ifconfig
/rescue/init
/rescue/ipf
/rescue/iscsictl
/rescue/iscsid
/rescue/kenv
/rescue/kill
/rescue/kldconfig
/rescue/kldload
/rescue/kldstat
/rescue/kldunload
/rescue/ldconfig
/rescue/less
/rescue/link
/rescue/ln
/rescue/ls
/rescue/lzcat
/rescue/lzma
/rescue/md5
/rescue/mdconfig
/rescue/mdmfs
/rescue/mkdir
/rescue/mknod
/rescue/more
/rescue/mount
/rescue/mount_cd9660
/rescue/mount_msdosfs
/rescue/mount_nfs
/rescue/mount_nullfs
/rescue/mount_udf
/rescue/mount_unionfs
/rescue/mt
/rescue/mv
/rescue/nc
/rescue/newfs
/rescue/newfs_msdos
/rescue/nos-tun
/rescue/pgrep
/rescue/ping
/rescue/ping6
/rescue/pkill
/rescue/poweroff
/rescue/ps
/rescue/pwd
/rescue/rcorder
/rescue/rdump
/rescue/realpath
/rescue/reboot
/rescue/red
/rescue/rescue
/rescue/restore
/rescue/rm
/rescue/rmdir
/rescue/route
/rescue/routed
/rescue/rrestore
/rescue/rtquery
/rescue/rtsol
/rescue/savecore
/rescue/sed
/rescue/setfacl
/rescue/sh
/rescue/shutdown
/rescue/sleep
/rescue/stty
/rescue/swapon
/rescue/sync
/rescue/sysctl
/rescue/tail
/rescue/tar
/rescue/tcsh
/rescue/tee
/rescue/test
/rescue/tunefs
/rescue/umount
/rescue/unlink
/rescue/unlzma
/rescue/unxz
/rescue/unzstd
/rescue/vi
/rescue/whoami
/rescue/xz
/rescue/xzcat
/rescue/zcat
/rescue/zdb
/rescue/zfs
/rescue/zpool
/rescue/zstd
/rescue/zstdcat
/rescue/zstdmt
/sbin/bectl
/sbin/dump
/sbin/fdisk
/sbin/fsck
/sbin/fsck_4.2bsd
/sbin/fsck_ffs
/sbin/fsck_ufs
/sbin/growfs
/sbin/init
/sbin/mdmfs
/sbin/mksnap_ffs
/sbin/mount
/sbin/mount_cd9660
/sbin/mount_fusefs
/sbin/mount_mfs
/sbin/mount_msdosfs
/sbin/mount_nfs
/sbin/mount_nullfs
/sbin/mount_udf
/sbin/mount_unionfs
/sbin/newfs_msdos
/sbin/nfsiod
/sbin/rdump
/sbin/savecore
/sbin/tunefs
/sbin/umount
/sbin/zfs
/usr/bin/c++
/usr/bin/c++filt
/usr/bin/cc
/usr/bin/clang
/usr/bin/clang++
/usr/bin/clang-cpp
/usr/bin/cpp
/usr/bin/find
/usr/bin/gcov
/usr/bin/kyua
/usr/bin/ld.lld
/usr/bin/lldb
/usr/bin/lldb-server
/usr/bin/llvm-addr2line
/usr/bin/llvm-ar
/usr/bin/llvm-cov
/usr/bin/llvm-cxxfilt
/usr/bin/llvm-nm
/usr/bin/llvm-objcopy
/usr/bin/llvm-objdump
/usr/bin/llvm-profdata
/usr/bin/llvm-ranlib
/usr/bin/llvm-readelf
/usr/bin/llvm-readobj
/usr/bin/llvm-size
/usr/bin/llvm-strings
/usr/bin/llvm-strip
/usr/bin/llvm-symbolizer
/usr/bin/lsvfs
/usr/bin/mkuzip
/usr/bin/nfsstat
/usr/bin/objdump
/usr/bin/quota
/usr/bin/readlink
/usr/bin/slogin
/usr/bin/ssh
/usr/bin/ssh-keyscan
/usr/bin/stat
/usr/bin/tail
/usr/include/fs/nfs/nfs_var.h
/usr/include/netinet/in_pcb.h
/usr/include/sys/mount.h
/usr/lib/clang/16/lib/freebsd/libclang_rt.asan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.asan-x86_64.so
/usr/lib/clang/16/lib/freebsd/libclang_rt.cfi-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.cfi_diag-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.dd-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.msan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.stats-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.tsan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.xray-x86_64.a
/usr/lib/lib9p.a
/usr/lib/lib9p.so.1
/usr/lib/libbe.a
/usr/lib/libc.a
/usr/lib/libc_pic.a
/usr/lib/libefivar.a
/usr/lib/libefivar.so.1
/usr/lib/libkadm5srv.a
/usr/lib/libkadm5srv.so.11
/usr/lib/libkrb5.a
/usr/lib/libkrb5.so.11
/usr/lib/libprivateauditd.a
/usr/lib/libprivateauditd.so.5
/usr/lib/libprivatessh.a
/usr/lib/libprivatessh.so.5
/usr/lib/libprivateunbound.a
/usr/lib/libprivateunbound.so.5
/usr/lib/libroken.a
/usr/lib/libroken.so.11
/usr/lib/libspl.a
/usr/lib/libufs.a
/usr/lib/libugidfw.a
/usr/lib/libugidfw.so.5
/usr/lib/libutil.a
/usr/lib/libzfs.a
/usr/lib/libzpool.a
/usr/lib/snmp_hostres.so.6
/usr/libexec/sendmail/sendmail
/usr/libexec/ssh-keysign
/usr/sbin/automount
/usr/sbin/automountd
/usr/sbin/autounmountd
/usr/sbin/bhyveload
/usr/sbin/extattrctl
/usr/sbin/hv_vss_daemon
/usr/sbin/jail
/usr/sbin/local-unbound
/usr/sbin/local-unbound-anchor
/usr/sbin/local-unbound-checkconf
/usr/sbin/local-unbound-control
/usr/sbin/lpd
/usr/sbin/mount_smbfs
/usr/sbin/mountd
/usr/sbin/pnfsdscopymr
/usr/sbin/quot
/usr/sbin/rpc.lockd
/usr/sbin/rpc.umntall
/usr/sbin/snapinfo
/usr/sbin/sshd
/usr/sbin/zdb
/usr/share/zoneinfo/America/Godthab
/usr/share/zoneinfo/America/Miquelon
/usr/share/zoneinfo/America/Montreal
/usr/share/zoneinfo/America/Nassau
/usr/share/zoneinfo/America/Nipigon
/usr/share/zoneinfo/America/Nuuk
/usr/share/zoneinfo/America/Scoresbysund
/usr/share/zoneinfo/America/Thunder_Bay
/usr/share/zoneinfo/America/Toronto
/usr/share/zoneinfo/Antarctica/Casey
/usr/share/zoneinfo/Antarctica/Vostok
/usr/share/zoneinfo/Asia/Almaty
/usr/share/zoneinfo/Asia/Gaza
/usr/share/zoneinfo/Asia/Hebron
/usr/share/zoneinfo/Asia/Ho_Chi_Minh
/usr/share/zoneinfo/Asia/Qostanay
/usr/share/zoneinfo/Asia/Saigon
/usr/share/zoneinfo/Canada/Eastern
/usr/share/zoneinfo/zone.tab
/usr/share/zoneinfo/zone1970.tab
/var/db/etcupdate/current/etc/defaults/rc.conf
/var/db/etcupdate/current/etc/periodic/daily/480.leapfile-ntpd
/var/db/mergemaster.mtree
Installing updates...Scanning /usr/share/certs/untrusted for certificates...
Scanning /usr/share/certs/trusted for certificates...
 done.
=====>  Stop the pot freebsd-potluck-amd64-14_0
=====>  Remove p4661c0b04b4a6 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m/dev
=====>  Flavour: freebsd-potluck
=====>  Executing freebsd-potluck pot commands on freebsd-potluck-amd64-14_0
=====>  Starting freebsd-potluck-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot freebsd-potluck-amd64-14_0
=====>  Pot freebsd-potluck-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=freebsd-potluck-amd64-14_0 host.hostname=freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p6 path=/mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m persist vnet vnet.interface=epair1b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair1b.
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 0x8
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair1b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:ac:36:f2:bd:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Clearing /tmp (X related).
Starting syslogd.
Starting cron.

Sun Apr 14 17:00:13 UTC 2024
/usr/local/etc/pot/flavours/freebsd-potluck.sh -> /mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m/tmp/freebsd-potluck.sh
=====>  Executing freebsd-potluck script on freebsd-potluck-amd64-14_0
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.21.1...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.21.1: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:14:amd64/quarterly, please wait...
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Disable sshd
sshd not running? (check /var/run/sshd.pid).
sshd disabled in /etc/rc.conf
Step 6: Create /usr/local/etc/rc.d
Step 7: Install package openssl
Updating FreeBSD repository catalogue...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 34055 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	openssl: 3.0.13_2,1

Number of packages to be installed: 1

The process will require 22 MiB more space.
6 MiB to be downloaded.
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching openssl-3.0.13_2,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing openssl-3.0.13_2,1...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting openssl-3.0.13_2,1: .......... done
Step 8: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	gettext-runtime: 0.22.5
	indexinfo: 0.3.1
	sudo: 1.9.15p5_4

Number of packages to be installed: 3

The process will require 9 MiB more space.
2 MiB to be downloaded.
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching indexinfo-0.3.1.pkg: . done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching sudo-1.9.15p5_4.pkg: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching gettext-runtime-0.22.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Installing indexinfo-0.3.1...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting indexinfo-0.3.1: .... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Installing gettext-runtime-0.22.5...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting gettext-runtime-0.22.5: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Installing sudo-1.9.15p5_4...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting sudo-1.9.15p5_4: .......... done
Step 9: Install package ca_root_nss
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	ca_root_nss: 3.93_2

Number of packages to be installed: 1

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

--
FreeBSD does not, and can not warrant that the certification authorities
whose certificates are included in this package have in any way been
audited for trustworthiness or RFC 3647 compliance.

Assessment and verification of trust is the complete responsibility of
the system administrator.

This package installs symlinks to support root certificate discovery
for software that either uses other cryptographic libraries than
OpenSSL, or use OpenSSL but do not follow recommended practice.

If you prefer to do this manually, replace the following symlinks with
either an empty file or your site-local certificate bundle.

  * /etc/ssl/cert.pem
  * /usr/local/etc/ssl/cert.pem
  * /usr/local/openssl/cert.pem
Step 10: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	curl: 8.7.1
	libidn2: 2.3.7
	libnghttp2: 1.61.0
	libpsl: 0.21.5
	libssh2: 1.11.0_1,3
	libunistring: 1.2

Number of packages to be installed: 6

The process will require 10 MiB more space.
3 MiB to be downloaded.
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/6] Fetching libnghttp2-1.61.0.pkg: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/6] Fetching libidn2-2.3.7.pkg: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/6] Fetching libunistring-1.2.pkg: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/6] Fetching libssh2-1.11.0_1,3.pkg: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/6] Fetching libpsl-0.21.5.pkg: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/6] Fetching curl-8.7.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/6] Installing libunistring-1.2...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/6] Extracting libunistring-1.2: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/6] Installing libidn2-2.3.7...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/6] Extracting libidn2-2.3.7: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/6] Installing libnghttp2-1.61.0...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/6] Extracting libnghttp2-1.61.0: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/6] Installing libssh2-1.11.0_1,3...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/6] Extracting libssh2-1.11.0_1,3: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/6] Installing libpsl-0.21.5...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/6] Extracting libpsl-0.21.5: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/6] Installing curl-8.7.1...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/6] Extracting curl-8.7.1: .......... done
Step 11: Install package jq
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	jq: 1.7.1
	oniguruma: 6.9.9

Number of packages to be installed: 2

The process will require 3 MiB more space.
607 KiB to be downloaded.
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching jq-1.7.1.pkg: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching oniguruma-6.9.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing oniguruma-6.9.9...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting oniguruma-6.9.9: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing jq-1.7.1...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting jq-1.7.1: .......... done
Step 12: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	jo: 1.6_1

Number of packages to be installed: 1

21 KiB to be downloaded.
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jo-1.6_1.pkg: .... done
Checking integrity... done (0 conflicting)
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jo-1.6_1...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jo-1.6_1: ....... done
Step 13: Install package nano
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	nano: 7.2_1

Number of packages to be installed: 1

The process will require 3 MiB more space.
667 KiB to be downloaded.
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching nano-7.2_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing nano-7.2_1...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting nano-7.2_1: .......... done
Step 14: Install package bash
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	bash: 5.2.26_1
	readline: 8.2.10

Number of packages to be installed: 2

The process will require 11 MiB more space.
2 MiB to be downloaded.
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching readline-8.2.10.pkg: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching bash-5.2.26_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing readline-8.2.10...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting readline-8.2.10: .......... done
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing bash-5.2.26_1...
[freebsd-potluck-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting bash-5.2.26_1: .......... done
Step 15: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 5 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libiconv: 1.17_1
	liblz4: 1.9.4_1,1
	rsync: 3.2.7_1
	xxhash: 0.8.2_1
	zstd: 1.5.6

Number of packages to be installed: 5

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

--
Some scripts provided by rsync, such as rrsync,
require Python, which is not installed by default.
Step 16: Clean package installation
Nothing to do.
Step 17: Remove pre-existing cook script (if any)
=====>  Stop the pot freebsd-potluck-amd64-14_0
=====>  Remove p4661c0b9cb4a6 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/freebsd-potluck-amd64-14_0/m/dev
===>  exporting freebsd-potluck-amd64-14_0 @ 1713114073 to /tmp/freebsd-potluck-amd64-14_0_0.0.23.xz
xz: Reduced the number of threads from 4 to 3 to not exceed the memory usage limit of 503 MiB

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