Skip to content

Commit

Permalink
handbook/jails: Fix typo in thin jail with nullfs guide
Browse files Browse the repository at this point in the history
Previous statement resulted in errors regarding missing directories.

Reviewed by:	Mina Galić <[email protected]>, dbaio
Pull Request:	#302
  • Loading branch information
maltekrupa authored and dbaio committed Feb 24, 2024
1 parent 879f78a commit 842cc14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/content/en/books/handbook/jails/_index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
....

Expand Down

0 comments on commit 842cc14

Please sign in to comment.