git: 1c72508eb7 - main - Handbook - Jails: Fix typo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 28 Sep 2023 08:48:45 UTC
The branch main has been updated by carlavilla: URL: https://cgit.FreeBSD.org/doc/commit/?id=1c72508eb7b4f2a02f15b1400cf3678abb518a77 commit 1c72508eb7b4f2a02f15b1400cf3678abb518a77 Author: Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> AuthorDate: 2023-09-28 08:48:09 +0000 Commit: Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> CommitDate: 2023-09-28 08:48:09 +0000 Handbook - Jails: Fix typo Obtained from: https://github.com/freebsd/freebsd-doc/pull/262 --- documentation/content/en/books/handbook/jails/_index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/content/en/books/handbook/jails/_index.adoc b/documentation/content/en/books/handbook/jails/_index.adoc index ccae77a0af..3ac134a9f5 100644 --- a/documentation/content/en/books/handbook/jails/_index.adoc +++ b/documentation/content/en/books/handbook/jails/_index.adoc @@ -730,7 +730,7 @@ vnet { exec.prestart += "ifconfig ${bridge} addm ${epair}a up"; exec.start += "ifconfig ${epair}b ${ip} up"; exec.start += "route add default ${gateway}"; - exec.poststop = "ifconfig ${$bridge} deletem ${epair}a"; + exec.poststop = "ifconfig ${bridge} deletem ${epair}a"; exec.poststop += "ifconfig ${epair}a destroy"; } ....