git: 842cc143fb - main - handbook/jails: Fix typo in thin jail with nullfs guide
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 24 Feb 2024 18:24:01 UTC
The branch main has been updated by dbaio:
URL: https://cgit.FreeBSD.org/doc/commit/?id=842cc143fb4305a7ccbbf70decde54609478790e
commit 842cc143fb4305a7ccbbf70decde54609478790e
Author: Malte <github-nqyroppg@nafn.de>
AuthorDate: 2023-12-05 07:21:22 +0000
Commit: Danilo G. Baio <dbaio@FreeBSD.org>
CommitDate: 2024-02-24 18:21:31 +0000
handbook/jails: Fix typo in thin jail with nullfs guide
Previous statement resulted in errors regarding missing directories.
Reviewed by: Mina Galić <freebsd@igalic.co>, dbaio
Pull Request: https://github.com/freebsd/freebsd-doc/pull/302
---
documentation/content/en/books/handbook/jails/_index.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/documentation/content/en/books/handbook/jails/_index.adoc b/documentation/content/en/books/handbook/jails/_index.adoc
index 508869289b..aa92f6c780 100644
--- a/documentation/content/en/books/handbook/jails/_index.adoc
+++ b/documentation/content/en/books/handbook/jails/_index.adoc
@@ -625,14 +625,14 @@ thinjail {
# HOSTNAME/PATH
host.hostname = "${name}";
- path = "/usr/local/jails/containers/${name}";
+ path = "/usr/local/jails/${name}-nullfs-base";
# NETWORK
ip4.addr = 192.168.1.153;
interface = em0;
# MOUNT
- mount.fstab = "/usr/local/jails/thinjail-nullfs-base.fstab";
+ mount.fstab = "/usr/local/jails/${name}-nullfs-base.fstab";
}
....