diff options
| author | Benedict Reuschling <bcr@FreeBSD.org> | 2024-05-29 20:08:38 +0000 |
|---|---|---|
| committer | Benedict Reuschling <bcr@FreeBSD.org> | 2024-05-29 20:08:38 +0000 |
| commit | 0f867da82701d21be4d0e1f283584c32649a01f9 (patch) | |
| tree | dbf79400a8c08d0e996bbfff189d6c56a5ad5aac | |
| parent | fd25efa62a92d2abdeec0493fba2d30a68ce43db (diff) | |
| download | doc-0f867da82701d21be4d0e1f283584c32649a01f9.tar.gz doc-0f867da82701d21be4d0e1f283584c32649a01f9.zip | |
Update paths to match when destroying jails
The paths when destroying a jail did not match with the ones used when
creating them. Update the paths to match again.
PR: 276668
| -rw-r--r-- | documentation/content/en/books/handbook/jails/_index.adoc | 4 |
1 files 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 9465c4dccc..fbf3b2b80d 100644 --- a/documentation/content/en/books/handbook/jails/_index.adoc +++ b/documentation/content/en/books/handbook/jails/_index.adoc @@ -1006,14 +1006,14 @@ The second step is to remove these flags with man:chflags[1] by executing the fo [source,shell] .... -# chflags -R 0 /usr/local/jails/classic +# chflags -R 0 /usr/local/jails/containers/classic .... The third step is to delete the directory where the jail was: [source,shell] .... -# rm -rf /usr/local/jails/classic +# rm -rf /usr/local/jails/containers/classic .... Finally, it will be necessary to remove the jail entry in [.filename]#/etc/jail.conf# or in [.filename]#jail.conf.d#. |
