diff options
| author | Samvel Khalatyan <sn.khalatyan@gmail.com> | 2026-02-18 17:00:13 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2026-03-07 07:51:16 +0000 |
| commit | 895a97c875a0f3fed3d4399762f6262b5a4aedb9 (patch) | |
| tree | f98e74b630d0acd1976bbe7feae80916e5e4922d | |
| parent | cb69951f7ee68c51ce465dba9b0d2f661c567c4b (diff) | |
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
| -rwxr-xr-x | libexec/rc/rc.d/zfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rc/rc.d/zfs b/libexec/rc/rc.d/zfs index 99156332e47b..7c8c3af28d31 100755 --- a/libexec/rc/rc.d/zfs +++ b/libexec/rc/rc.d/zfs @@ -19,7 +19,7 @@ required_modules="zfs" zfs_start_jail() { if check_jail mount_allowed; then - zfs mount -a + zfs mount -va fi } |
