It sounds good but can't start jail after deleting the clean snapshot.Destroy the snapshot, enter the jail
# poudriere jail -s -j 143amd64 -p default
[00:00:00] Creating the reference jail...cannot open 'zroot/poudriere/jails/143amd64@clean': dataset does not exist
done
pwd_mkdb: /poudriere/data/.m/143amd64-default/ref/etc/master.passwd: No such file or directory
[00:00:00] Error: pwd_mkdb for the jail failed.
# vipw
vipw: no changes made
# vipw
vipw: password list updated
# pkg ins portlint portfmt distilator
The package management tool is not yet installed on your system.
Do you want to fetch and install it now? [y/N]: y
Bootstrapping pkg from pkg+https://pkg.FreeBSD.org/FreeBSD:14:amd64/quarterly, please wait...
pkg: Attempted to fetch pkg+https://pkg.FreeBSD.org/FreeBSD:14:amd64/quarterly/Latest/pkg.pkg
pkg: Attempted to fetch pkg+https://pkg.FreeBSD.org/FreeBSD:14:amd64/quarterly/Latest/pkg.txz
pkg: Error: Host does not resolve
Address resolution failed for https://pkg.FreeBSD.org/FreeBSD:14:amd64/quarterly.
Bootstrapping pkg from pkg+https://pkg.FreeBSD.org/FreeBSD:14:amd64/kmods_quarterly_3, please wait...
pkg: Attempted to fetch pkg+https://pkg.FreeBSD.org/FreeBSD:14:amd64/kmods_quarterly_3/Latest/pkg.pkg
pkg: Attempted to fetch pkg+https://pkg.FreeBSD.org/FreeBSD:14:amd64/kmods_quarterly_3/Latest/pkg.txz
pkg: Error: Host does not resolve
Address resolution failed for https://pkg.FreeBSD.org/FreeBSD:14:amd64/kmods_quarterly_3.
# date
Fri Nov 28 00:32:40 +03 2025
I think there is an environment variable called INTERACTIVE_SHELL that can be written to /usr/local/etc/poudriere.conf.However, my default shell is getting replaced by /bin/sh somehow.
It is recommended to set these in the environment:
EOF
case "${INTERACTIVE_SHELL}" in
csh)
cat >> "${MASTERMNT:?}/etc/motd" <<-EOF
setenv DEVELOPER 1
setenv DEVELOPER_MODE yes
EOF
;;
*sh)
cat >> "${MASTERMNT:?}/etc/motd" <<-EOF
export DEVELOPER=1
export DEVELOPER_MODE=yes
EOF
;;
esac
INTERACTIVE_SHELL="csh" to /usr/local/etc/poudriere.conf and I get csh as default shell now. tcsh does work too.