Nginx (Nomad)

Overview

This is a NGINX jail that can be started with pot but it can also be deployed via nomad.

NGINX is started as blocking task when the jail is started (see nginx-nomad+4.sh). The image also is slimmed (see nginx-nomad+3.sh)

For more details about nomadimages, see about potluck.

Nomad Job Description Example

An easy way to use the jail is to copy in a nginx.conf file on start and mount the www directory into the jail (which needs to be referenced by the nginx.conf file of course):

job "example" {
  datacenters = ["datacenter"]
  type        = "service"

  group "group1" {
    count = 1

    network {
      port "http" {
        static = 12000
      }
    }

    task "www1" {
      driver = "pot"

      service {
        tags = ["nginx", "www"]
        name = "nginx-example-service"
        port = "http"

         check {
            type     = "tcp"
            name     = "tcp"
            interval = "60s"
            timeout  = "30s"
          }
      }

      config {
        image = "https://potluck.honeyguide.net/nginx-nomad"
        pot = "nginx-nomad-amd64-13_1"
        tag = "1.1.13"
        command = "nginx"
        args = ["-g","'daemon off;'"]

       copy = [
         "/mnt/s3/web/nginx.conf:/usr/local/etc/nginx/nginx.conf",
       ]
       mount = [
         "/mnt/s3/web/www:/mnt"
       ]
        port_map = {
          http = "80"
        }
      }

      resources {
        cpu = 200
        memory = 64
      }
    }
  }
}

Getting Started

How To Use The Ready-Made Image

FreeBSD 13.1:
pot import -p nginx-nomad-amd64-13_1 -t 1.1.13 -U https://potluck.honeyguide.net/nginx-nomad

FreeBSD 12.4:
pot import -p nginx-nomad-amd64-12_4 -t 1.1.13 -U https://potluck.honeyguide.net/nginx-nomad

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 nginx-nomad-amd64-13_1 -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/nginx-nomad 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. 13.1) and the name your jail should get.

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Version History

1.1.13

  • Version bump for rebuild
  • This image still to be updated to new formats

1.1.12

  • Version bump for rebuild
  • This image still to be updated to new formats

1.1.11

  • Version bump for rebuild
  • This image still to be updated to new formats

1.1.10

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

1.1.9

  • Version bump for p3 rebuild

1.1.8

  • Update job file in README
  • Add checklist

1.1.7

  • Version bump for rebuild on new base, no update to cook setup yet

1.1.6

  • Version bump for FreeBSD-13.1 image

1.1.5

  • Rebuild for FreeBSD 12_3 and 13 & pot 13

1.1.4

  • Rebuild for FreeBSD 13 & new packages

1.1.3

  • Trigger build of FreeBSD 12.2 image & rebuild FreeBSD 11.4 image to update packages

1.1.2

  • Added nomad job example file

1.1.1

  • Added slim.sh as nginx-nomad+3.sh as Jenkins no longer creates slimmed version of each flavour

1.1

  • Fixed naming of second flavour (nginx-nomad+1.sh)

1.0

  • Initial commit

These images were built on Mon Feb 20 23:57:42 UTC 2023

Manual Image Download Links

nginx-nomad-amd64-13_1_1.1.13.xz ( 307.124 MB )
nginx-nomad-amd64-13_1_1.1.13.xz.skein ( 0.250977 KB ) nginx-nomad-amd64-13_1_1.1.13.xz.meta ( 0.00195312 KB )

nginx-nomad-amd64-12_4_1.1.13.xz ( 59.4494 MB )
nginx-nomad-amd64-12_4_1.1.13.xz.skein ( 0.250977 KB ) nginx-nomad-amd64-12_4_1.1.13.xz.meta ( 0.00195312 KB )

Jenkins Pot Creation Logs

nginx-nomad-amd64-13_1_1.1.13:


nginx-nomad/nginx-nomad:
set-attribute -A persistent -V OFF
set-attribute -A no-rc-script -V ON
nginx-nomad/nginx-nomad.sh:
#!/bin/sh

ASSUME_ALWAYS_YES=yes pkg bootstrap
touch /etc/rc.conf
service sendmail onedisable
pkg install -y nginx
echo "error_log /dev/stderr;" >> /usr/local/etc/nginx/nginx.conf
sed -i '' 's%#access_log  logs/access.log .*$%access_log /dev/stdout combined;%' /usr/local/etc/nginx/nginx.conf
pkg clean -y

nginx-nomad/nginx-nomad+1:
nginx-nomad/nginx-nomad+1.sh:

nginx-nomad/nginx-nomad+2:
nginx-nomad/nginx-nomad+2.sh:

nginx-nomad/nginx-nomad+3:
nginx-nomad/nginx-nomad+3.sh:
#!/bin/sh

dirs="/usr/share/bsdconfig /usr/share/doc /usr/share/dtrace /usr/share/examples /usr/share/man /usr/share/openssl /usr/share/sendmail /usr/share/pc-sysinstall /usr/libexec/bsdinstall /usr/libexec/bsdconfig /rescue /usr/tests /usr/lib32 /usr/lib/clang /usr/include /var/db/freebsd-update /var/db/etcupdate /boot"
usr_bin="c++ c++filt c89 c99 cc CC cpp clang clang-cpp clang-tblgen clang++ gdb gdbtui gdbserver ld ld.bfd ld.lld lldb llvm-objdump llvm-tblgen nm objcopy objdump strings strip"
usr_bin_glob="svnlite yp"

usr_sbin="dtrace"
usr_sbin_glob="bhyve boot yp"
rm -f /usr/lib/*.a
## Remove pkg stuff
rm -rf /var/db/pkg/*
rm -rf /usr/sbin/pkg
rm -rf /usr/local/sbin/pkg

for d in $dirs ; do
	rm -rf "$d"
done
(
	cd /usr/bin || exit 1
	for f in $usr_bin ; do
		rm -f "$f"
	done
	for g in $usr_bin_glob ; do
		rm -rf "$g"*
	done
)
(
	cd /usr/sbin || exit 1
	for g in $usr_sbin_glob ; do
		rm -rf "$g"*
	done
	rm -f $usr_sbin
)

nginx-nomad/nginx-nomad+4:
set-cmd -c "nginx -g 'daemon off;'"
nginx-nomad/nginx-nomad+4.sh:
Password:===>  Creating a new pot
===>  pot name     : nginx-nomad-amd64-13_1
===>  type         : single
===>  base         : 13.1
===>  pot_base     : 
===>  level        : 0
===>  network-type : public-bridge
===>  network-stack: ipv4
===>  ip           : 10.192.0.3
===>  bridge       : 
===>  dns          : inherit
===>  flavours     : fbsd-update nginx-nomad
===>  Fetching FreeBSD 13.1
===>  Extract the tarball
=====>  Flavour: fbsd-update
=====>  Starting nginx-nomad-amd64-13_1 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/nginx-nomad-amd64-13_1/m/tmp
defaultrouter: NO -> 10.192.0.1
===>  Starting the pot nginx-nomad-amd64-13_1
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:7d:f5:f0:d0: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).
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Starting syslogd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.

Mon Feb 20 23:48:09 UTC 2023
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/nginx-nomad-amd64-13_1/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on nginx-nomad-amd64-13_1
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 13.1-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 179 patches.....10....20....30....40....50....60....70....80....90....100....110....120....130....140....150....160....170.... done.
Applying patches... done.
Fetching 2 files... . done.
The following files will be removed as part of updating to
13.1-RELEASE-p7:
/usr/share/zoneinfo/SystemV
The following files will be added as part of updating to
13.1-RELEASE-p7:
/usr/share/zoneinfo/America/Ciudad_Juarez
/usr/share/zoneinfo/Europe/Kyiv
/usr/share/zoneinfo/GMT
The following files will be updated as part of updating to
13.1-RELEASE-p7:
/bin/freebsd-version
/boot/loader
/boot/loader.efi
/boot/loader_4th
/boot/loader_4th.efi
/boot/loader_lua
/boot/loader_lua.efi
/boot/loader_simp
/boot/loader_simp.efi
/boot/pxeboot
/boot/userboot.so
/boot/userboot_4th.so
/boot/userboot_lua.so
/boot/zfsloader
/etc/mtree/BSD.usr.dist
/lib/geom/geom_eli.so
/lib/libcrypto.so.111
/lib/libz.so.6
/lib/libzpool.so.2
/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/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/spppcontrol
/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/ping
/sbin/ping6
/usr/bin/asn1_compile
/usr/bin/hxtool
/usr/bin/kadmin
/usr/bin/kcc
/usr/bin/kdestroy
/usr/bin/klist
/usr/bin/kswitch
/usr/bin/openssl
/usr/include/krb5.h
/usr/include/krb5_ccapi.h
/usr/include/openssl/bnerr.h
/usr/include/openssl/x509v3.h
/usr/lib/lib9p.a
/usr/lib/lib9p.so.1
/usr/lib/lib9p_p.a
/usr/lib/libasn1.a
/usr/lib/libasn1.so.11
/usr/lib/libasn1_p.a
/usr/lib/libcrypto.a
/usr/lib/libcrypto_p.a
/usr/lib/libfetch.a
/usr/lib/libfetch.so.6
/usr/lib/libfetch_p.a
/usr/lib/libgssapi_krb5.a
/usr/lib/libgssapi_krb5.so.10
/usr/lib/libgssapi_krb5_p.a
/usr/lib/libgssapi_ntlm.a
/usr/lib/libgssapi_ntlm.so.10
/usr/lib/libgssapi_ntlm_p.a
/usr/lib/libgssapi_spnego.a
/usr/lib/libgssapi_spnego.so.10
/usr/lib/libgssapi_spnego_p.a
/usr/lib/libhdb.a
/usr/lib/libhdb.so.11
/usr/lib/libhdb_p.a
/usr/lib/libhx509.a
/usr/lib/libhx509.so.11
/usr/lib/libhx509_p.a
/usr/lib/libkadm5clnt.a
/usr/lib/libkadm5clnt.so.11
/usr/lib/libkadm5clnt_p.a
/usr/lib/libkadm5srv.a
/usr/lib/libkadm5srv.so.11
/usr/lib/libkadm5srv_p.a
/usr/lib/libkafs5.a
/usr/lib/libkafs5.so.11
/usr/lib/libkafs5_p.a
/usr/lib/libkdc.a
/usr/lib/libkdc.so.11
/usr/lib/libkdc_p.a
/usr/lib/libkrb5.a
/usr/lib/libkrb5.so.11
/usr/lib/libkrb5_p.a
/usr/lib/libpam.a
/usr/lib/libprivateheimipcc.a
/usr/lib/libprivateheimipcc.so.11
/usr/lib/libprivateheimipcc_p.a
/usr/lib/libwind.a
/usr/lib/libwind.so.11
/usr/lib/libwind_p.a
/usr/lib/libz.a
/usr/lib/libz_p.a
/usr/lib/libzpool.a
/usr/lib/pam_exec.so.6
/usr/libexec/hpropd
/usr/libexec/ipropd-master
/usr/libexec/kadmind
/usr/libexec/kcm
/usr/sbin/hostapd
/usr/sbin/kstash
/usr/sbin/ktutil
/usr/sbin/rpc.tlsservd
/usr/sbin/wpa_supplicant
/usr/share/zoneinfo/Africa/Ceuta
/usr/share/zoneinfo/America/Bahia_Banderas
/usr/share/zoneinfo/America/Bogota
/usr/share/zoneinfo/America/Boise
/usr/share/zoneinfo/America/Cambridge_Bay
/usr/share/zoneinfo/America/Cancun
/usr/share/zoneinfo/America/Chicago
/usr/share/zoneinfo/America/Chihuahua
/usr/share/zoneinfo/America/Creston
/usr/share/zoneinfo/America/Denver
/usr/share/zoneinfo/America/Ensenada
/usr/share/zoneinfo/America/Fort_Wayne
/usr/share/zoneinfo/America/Godthab
/usr/share/zoneinfo/America/Hermosillo
/usr/share/zoneinfo/America/Indiana/Indianapolis
/usr/share/zoneinfo/America/Indiana/Knox
/usr/share/zoneinfo/America/Indiana/Marengo
/usr/share/zoneinfo/America/Indiana/Petersburg
/usr/share/zoneinfo/America/Indiana/Tell_City
/usr/share/zoneinfo/America/Indiana/Vevay
/usr/share/zoneinfo/America/Indiana/Vincennes
/usr/share/zoneinfo/America/Indiana/Winamac
/usr/share/zoneinfo/America/Indianapolis
/usr/share/zoneinfo/America/Inuvik
/usr/share/zoneinfo/America/Iqaluit
/usr/share/zoneinfo/America/Kentucky/Louisville
/usr/share/zoneinfo/America/Kentucky/Monticello
/usr/share/zoneinfo/America/Knox_IN
/usr/share/zoneinfo/America/Los_Angeles
/usr/share/zoneinfo/America/Louisville
/usr/share/zoneinfo/America/Matamoros
/usr/share/zoneinfo/America/Mazatlan
/usr/share/zoneinfo/America/Merida
/usr/share/zoneinfo/America/Mexico_City
/usr/share/zoneinfo/America/Monterrey
/usr/share/zoneinfo/America/New_York
/usr/share/zoneinfo/America/Nipigon
/usr/share/zoneinfo/America/North_Dakota/Beulah
/usr/share/zoneinfo/America/North_Dakota/Center
/usr/share/zoneinfo/America/North_Dakota/New_Salem
/usr/share/zoneinfo/America/Nuuk
/usr/share/zoneinfo/America/Ojinaga
/usr/share/zoneinfo/America/Pangnirtung
/usr/share/zoneinfo/America/Phoenix
/usr/share/zoneinfo/America/Punta_Arenas
/usr/share/zoneinfo/America/Rainy_River
/usr/share/zoneinfo/America/Rankin_Inlet
/usr/share/zoneinfo/America/Resolute
/usr/share/zoneinfo/America/Santa_Isabel
/usr/share/zoneinfo/America/Santiago
/usr/share/zoneinfo/America/Shiprock
/usr/share/zoneinfo/America/Thunder_Bay
/usr/share/zoneinfo/America/Tijuana
/usr/share/zoneinfo/America/Whitehorse
/usr/share/zoneinfo/America/Yellowknife
/usr/share/zoneinfo/Antarctica/Vostok
/usr/share/zoneinfo/Arctic/Longyearbyen
/usr/share/zoneinfo/Asia/Amman
/usr/share/zoneinfo/Asia/Brunei
/usr/share/zoneinfo/Asia/Damascus
/usr/share/zoneinfo/Asia/Gaza
/usr/share/zoneinfo/Asia/Hebron
/usr/share/zoneinfo/Asia/Ho_Chi_Minh
/usr/share/zoneinfo/Asia/Hong_Kong
/usr/share/zoneinfo/Asia/Jakarta
/usr/share/zoneinfo/Asia/Kuala_Lumpur
/usr/share/zoneinfo/Asia/Saigon
/usr/share/zoneinfo/Asia/Singapore
/usr/share/zoneinfo/Asia/Tehran
/usr/share/zoneinfo/Atlantic/Jan_Mayen
/usr/share/zoneinfo/Atlantic/Reykjavik
/usr/share/zoneinfo/Canada/Yukon
/usr/share/zoneinfo/Chile/Continental
/usr/share/zoneinfo/Chile/EasterIsland
/usr/share/zoneinfo/Eire
/usr/share/zoneinfo/Europe/Amsterdam
/usr/share/zoneinfo/Europe/Belfast
/usr/share/zoneinfo/Europe/Copenhagen
/usr/share/zoneinfo/Europe/Dublin
/usr/share/zoneinfo/Europe/Gibraltar
/usr/share/zoneinfo/Europe/Guernsey
/usr/share/zoneinfo/Europe/Isle_of_Man
/usr/share/zoneinfo/Europe/Jersey
/usr/share/zoneinfo/Europe/London
/usr/share/zoneinfo/Europe/Luxembourg
/usr/share/zoneinfo/Europe/Madrid
/usr/share/zoneinfo/Europe/Malta
/usr/share/zoneinfo/Europe/Monaco
/usr/share/zoneinfo/Europe/Oslo
/usr/share/zoneinfo/Europe/Rome
/usr/share/zoneinfo/Europe/San_Marino
/usr/share/zoneinfo/Europe/Simferopol
/usr/share/zoneinfo/Europe/Stockholm
/usr/share/zoneinfo/Europe/Uzhgorod
/usr/share/zoneinfo/Europe/Vatican
/usr/share/zoneinfo/Europe/Zaporozhye
/usr/share/zoneinfo/GB
/usr/share/zoneinfo/GB-Eire
/usr/share/zoneinfo/Hongkong
/usr/share/zoneinfo/Iceland
/usr/share/zoneinfo/Indian/Christmas
/usr/share/zoneinfo/Indian/Cocos
/usr/share/zoneinfo/Indian/Kerguelen
/usr/share/zoneinfo/Indian/Mahe
/usr/share/zoneinfo/Indian/Reunion
/usr/share/zoneinfo/Iran
/usr/share/zoneinfo/Mexico/BajaNorte
/usr/share/zoneinfo/Mexico/BajaSur
/usr/share/zoneinfo/Mexico/General
/usr/share/zoneinfo/Navajo
/usr/share/zoneinfo/Pacific/Chuuk
/usr/share/zoneinfo/Pacific/Easter
/usr/share/zoneinfo/Pacific/Fiji
/usr/share/zoneinfo/Pacific/Funafuti
/usr/share/zoneinfo/Pacific/Majuro
/usr/share/zoneinfo/Pacific/Pohnpei
/usr/share/zoneinfo/Pacific/Ponape
/usr/share/zoneinfo/Pacific/Truk
/usr/share/zoneinfo/Pacific/Wake
/usr/share/zoneinfo/Pacific/Wallis
/usr/share/zoneinfo/Pacific/Yap
/usr/share/zoneinfo/Singapore
/usr/share/zoneinfo/US/Arizona
/usr/share/zoneinfo/US/Central
/usr/share/zoneinfo/US/East-Indiana
/usr/share/zoneinfo/US/Eastern
/usr/share/zoneinfo/US/Indiana-Starke
/usr/share/zoneinfo/US/Mountain
/usr/share/zoneinfo/US/Pacific
/usr/share/zoneinfo/posixrules
/usr/share/zoneinfo/zone.tab
/usr/share/zoneinfo/zone1970.tab
/var/db/etcupdate/current/etc/mtree/BSD.usr.dist
/var/db/etcupdate/log
/var/db/mergemaster.mtree
Installing updates...Scanning //usr/share/certs/blacklisted for certificates...
Scanning //usr/share/certs/trusted for certificates...
 done.
=====>  Stop the pot nginx-nomad-amd64-13_1
=====>  Remove p463f406b673d1 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-13_1/m/tmp
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-13_1/m/dev
=====>  Flavour: nginx-nomad
=====>  Executing nginx-nomad pot commands on nginx-nomad-amd64-13_1
=====>  Starting nginx-nomad-amd64-13_1 pot for the initial bootstrap
=====>  Setting pot nginx-nomad-amd64-13_1 temporarily to persistent
=====>  mount /mnt/srv/pot/jails/nginx-nomad-amd64-13_1/m/tmp
===>  Starting the pot nginx-nomad-amd64-13_1
add net default: gateway 10.192.0.1
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:b5:e8:d3:73: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).
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Starting syslogd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.

Mon Feb 20 23:49:25 UTC 2023
/usr/local/etc/pot/flavours/nginx-nomad.sh -> /mnt/srv/pot/jails/nginx-nomad-amd64-13_1/m/tmp/nginx-nomad.sh
=====>  Executing nginx-nomad script on nginx-nomad-amd64-13_1
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.19.0...
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.19.0: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:13:amd64/quarterly, please wait...
Verifying signature with trusted certificate pkg.freebsd.org.2013102301... done
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Updating FreeBSD repository catalogue...
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 32412 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	nginx: 1.22.1_2,3
	pcre: 8.45_3

Number of packages to be installed: 2

The process will require 8 MiB more space.
2 MiB to be downloaded.
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.22.1_2,3.pkg: .......... done
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching pcre-8.45_3.pkg: .......... done
Checking integrity... done (0 conflicting)
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] [1/2] Installing pcre-8.45_3...
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting pcre-8.45_3: .......... done
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] [2/2] Installing nginx-1.22.1_2,3...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[nginx-nomad-amd64-13_1.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.22.1_2,3: .......... done
=====
Message from nginx-1.22.1_2,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.
Nothing to do.
=====>  Stop the pot nginx-nomad-amd64-13_1
=====>  Remove p463f4070373d1 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-13_1/m/tmp
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-13_1/m/dev
=====>  Reverting pot nginx-nomad-amd64-13_1 to non-persistent
Password:Password:===>  exporting nginx-nomad-amd64-13_1 @ 1676936981 to /tmp/nginx-nomad-amd64-13_1_1.1.13.xz

nginx-nomad-amd64-12_4_1.1.13:


nginx-nomad/nginx-nomad:
set-attribute -A persistent -V OFF
set-attribute -A no-rc-script -V ON
nginx-nomad/nginx-nomad.sh:
#!/bin/sh

ASSUME_ALWAYS_YES=yes pkg bootstrap
touch /etc/rc.conf
service sendmail onedisable
pkg install -y nginx
echo "error_log /dev/stderr;" >> /usr/local/etc/nginx/nginx.conf
sed -i '' 's%#access_log  logs/access.log .*$%access_log /dev/stdout combined;%' /usr/local/etc/nginx/nginx.conf
pkg clean -y

nginx-nomad/nginx-nomad+1:
nginx-nomad/nginx-nomad+1.sh:

nginx-nomad/nginx-nomad+2:
nginx-nomad/nginx-nomad+2.sh:

nginx-nomad/nginx-nomad+3:
nginx-nomad/nginx-nomad+3.sh:
#!/bin/sh

dirs="/usr/share/bsdconfig /usr/share/doc /usr/share/dtrace /usr/share/examples /usr/share/man /usr/share/openssl /usr/share/sendmail /usr/share/pc-sysinstall /usr/libexec/bsdinstall /usr/libexec/bsdconfig /rescue /usr/tests /usr/lib32 /usr/lib/clang /usr/include /var/db/freebsd-update /var/db/etcupdate /boot"
usr_bin="c++ c++filt c89 c99 cc CC cpp clang clang-cpp clang-tblgen clang++ gdb gdbtui gdbserver ld ld.bfd ld.lld lldb llvm-objdump llvm-tblgen nm objcopy objdump strings strip"
usr_bin_glob="svnlite yp"

usr_sbin="dtrace"
usr_sbin_glob="bhyve boot yp"
rm -f /usr/lib/*.a
## Remove pkg stuff
rm -rf /var/db/pkg/*
rm -rf /usr/sbin/pkg
rm -rf /usr/local/sbin/pkg

for d in $dirs ; do
	rm -rf "$d"
done
(
	cd /usr/bin || exit 1
	for f in $usr_bin ; do
		rm -f "$f"
	done
	for g in $usr_bin_glob ; do
		rm -rf "$g"*
	done
)
(
	cd /usr/sbin || exit 1
	for g in $usr_sbin_glob ; do
		rm -rf "$g"*
	done
	rm -f $usr_sbin
)

nginx-nomad/nginx-nomad+4:
set-cmd -c "nginx -g 'daemon off;'"
nginx-nomad/nginx-nomad+4.sh:
Password:===>  Creating a new pot
===>  pot name     : nginx-nomad-amd64-12_4
===>  type         : single
===>  base         : 12.4
===>  pot_base     : 
===>  level        : 0
===>  network-type : public-bridge
===>  network-stack: ipv4
===>  ip           : 10.192.0.8
===>  bridge       : 
===>  dns          : inherit
===>  flavours     : fbsd-update nginx-nomad nginx-nomad+1 nginx-nomad+2 nginx-nomad+3 nginx-nomad+4
===>  Fetching FreeBSD 12.4
===>  Extract the tarball
=====>  Flavour: fbsd-update
=====>  Starting nginx-nomad-amd64-12_4 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp
defaultrouter: NO -> 10.192.0.1
===>  Starting the pot nginx-nomad-amd64-12_4
Generating host.conf.
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:00:dd:d0:29:0b
	inet 10.192.0.8 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
Updating motd:.
Updating /var/run/os-release done.
Creating and/or trimming log files.
Starting syslogd.
Clearing /tmp (X related).
Starting cron.
Starting sendmail_submit.
Starting sendmail_msp_queue.

Mon Feb 20 23:55:01 UTC 2023
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on nginx-nomad-amd64-12_4
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 12.4-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 36 patches.....10....20....30... done.
Applying patches... done.
Fetching 1 files...  done.
The following files will be added as part of updating to
12.4-RELEASE-p2:
/usr/share/zoneinfo/America/Ciudad_Juarez
The following files will be updated as part of updating to
12.4-RELEASE-p2:
/bin/freebsd-version
/lib/geom/geom_eli.so
/lib/libcrypto.so.111
/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/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/spppcontrol
/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
/usr/bin/openssl
/usr/bin/svnlite
/usr/bin/svnlitebench
/usr/bin/svnlitemucc
/usr/bin/svnliterdump
/usr/bin/svnlitesync
/usr/include/openssl/bnerr.h
/usr/include/openssl/x509v3.h
/usr/lib/libcrypto.a
/usr/lib/libcrypto_p.a
/usr/lib/libfetch.a
/usr/lib/libfetch.so.6
/usr/lib/libfetch_p.a
/usr/lib/libprivatessh.a
/usr/lib/libprivatessh.so.5
/usr/lib/libprivatessh_p.a
/usr/sbin/hostapd
/usr/sbin/wpa_supplicant
/usr/share/zoneinfo/America/Bogota
/usr/share/zoneinfo/America/Cambridge_Bay
/usr/share/zoneinfo/America/Godthab
/usr/share/zoneinfo/America/Inuvik
/usr/share/zoneinfo/America/Iqaluit
/usr/share/zoneinfo/America/Nuuk
/usr/share/zoneinfo/America/Ojinaga
/usr/share/zoneinfo/America/Pangnirtung
/usr/share/zoneinfo/America/Rankin_Inlet
/usr/share/zoneinfo/America/Resolute
/usr/share/zoneinfo/America/Whitehorse
/usr/share/zoneinfo/America/Yellowknife
/usr/share/zoneinfo/Asia/Kuala_Lumpur
/usr/share/zoneinfo/Asia/Singapore
/usr/share/zoneinfo/Canada/Yukon
/usr/share/zoneinfo/Singapore
/usr/share/zoneinfo/zone.tab
/usr/share/zoneinfo/zone1970.tab
Installing updates...Scanning //usr/share/certs/blacklisted for certificates...
Scanning //usr/share/certs/trusted for certificates...
 done.
=====>  Stop the pot nginx-nomad-amd64-12_4
=====>  Remove p463f40852a6a0 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/dev
=====>  Flavour: nginx-nomad
=====>  Executing nginx-nomad pot commands on nginx-nomad-amd64-12_4
=====>  Starting nginx-nomad-amd64-12_4 pot for the initial bootstrap
=====>  Setting pot nginx-nomad-amd64-12_4 temporarily to persistent
=====>  mount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp
===>  Starting the pot nginx-nomad-amd64-12_4
add net default: gateway 10.192.0.1
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:b0:f7:74:ac:0b
	inet 10.192.0.8 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
Updating motd:.
Updating /var/run/os-release done.
Creating and/or trimming log files.
Starting syslogd.
Clearing /tmp (X related).
Starting cron.
Starting sendmail_submit.
Starting sendmail_msp_queue.

Mon Feb 20 23:55:53 UTC 2023
/usr/local/etc/pot/flavours/nginx-nomad.sh -> /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp/nginx-nomad.sh
=====>  Executing nginx-nomad script on nginx-nomad-amd64-12_4
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.19.0...
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.19.0: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:12:amd64/quarterly, please wait...
Verifying signature with trusted certificate pkg.freebsd.org.2013102301... done
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Updating FreeBSD repository catalogue...
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 32394 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	nginx: 1.22.1_2,3
	pcre: 8.45_3

Number of packages to be installed: 2

The process will require 8 MiB more space.
2 MiB to be downloaded.
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.22.1_2,3.pkg: .......... done
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching pcre-8.45_3.pkg: .......... done
Checking integrity... done (0 conflicting)
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] [1/2] Installing pcre-8.45_3...
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting pcre-8.45_3: .......... done
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] [2/2] Installing nginx-1.22.1_2,3...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[nginx-nomad-amd64-12_4.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.22.1_2,3: .......... done
=====
Message from nginx-1.22.1_2,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.
Nothing to do.
=====>  Stop the pot nginx-nomad-amd64-12_4
=====>  Remove p463f40887a6a0 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/dev
=====>  Reverting pot nginx-nomad-amd64-12_4 to non-persistent
=====>  Flavour: nginx-nomad+1
=====>  Executing nginx-nomad+1 pot commands on nginx-nomad-amd64-12_4
=====>  No shell script available for the flavour nginx-nomad+1
=====>  Flavour: nginx-nomad+2
=====>  Executing nginx-nomad+2 pot commands on nginx-nomad-amd64-12_4
=====>  No shell script available for the flavour nginx-nomad+2
=====>  Flavour: nginx-nomad+3
=====>  Executing nginx-nomad+3 pot commands on nginx-nomad-amd64-12_4
=====>  Starting nginx-nomad-amd64-12_4 pot for the initial bootstrap
=====>  Setting pot nginx-nomad-amd64-12_4 temporarily to persistent
=====>  mount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp
===>  Starting the pot nginx-nomad-amd64-12_4
add net default: gateway 10.192.0.1
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=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:67:36:ed:89:0b
	inet 10.192.0.8 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.
Starting syslogd.
Clearing /tmp (X related).
Starting cron.
Starting sendmail_outbound.

Mon Feb 20 23:56:17 UTC 2023
/usr/local/etc/pot/flavours/nginx-nomad+3.sh -> /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp/nginx-nomad+3.sh
=====>  Executing nginx-nomad+3 script on nginx-nomad-amd64-12_4
=====>  Stop the pot nginx-nomad-amd64-12_4
=====>  Remove p463f4089ea6a0 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/tmp
=====>  unmount /mnt/srv/pot/jails/nginx-nomad-amd64-12_4/m/dev
=====>  Reverting pot nginx-nomad-amd64-12_4 to non-persistent
=====>  Flavour: nginx-nomad+4
=====>  Executing nginx-nomad+4 pot commands on nginx-nomad-amd64-12_4
=====>  No shell script available for the flavour nginx-nomad+4

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