rc.d/zfs: align zfs mount verbosity in host and jail environments

ZFS script runs different startup seqneces depending on where it runs:
on the host (`zfs_start_main()`) or in a jail (`zfs_start_jail()`):

- `zfs_start_main()` mounts ZFS datasets in verbose mode `zfs mount -va`
- `zfs_start_jail()` mounts ZFS datasets silently `zfs mount -a`.

This change aligns the verbose levels.

NO_ISSUE

Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/2030
This commit is contained in:
Samvel Khalatyan
2026-02-18 11:00:13 -06:00
committed by Warner Losh
parent cb69951f7e
commit 895a97c875
+1 -1
View File
@@ -19,7 +19,7 @@ required_modules="zfs"
zfs_start_jail()
{
if check_jail mount_allowed; then
zfs mount -a
zfs mount -va
fi
}