diff options
author | наб <[email protected]> | 2021-05-03 21:21:21 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2021-05-10 12:16:46 -0700 |
commit | b1dd6351bb16f57f95dab79cfba36c3e05a82e76 (patch) | |
tree | f95ddb4c732915daa50ad4b450b9bb3fabb44dba /contrib/pyzfs | |
parent | cb18cf6b0a832b119a3e73a5e3bdeba2a53559b1 (diff) |
Replace ZoL with OpenZFS where applicable
Afterward, git grep ZoL matches:
* README.md: * [ZoL Site](https://zfsonlinux.org)
- Correct
* etc/default/zfs.in:# ZoL userland configuration.
- Changing this would induce a needless upgrade-check,
if the user has modified the configuration;
this can be updated the next time the defaults change
* module/zfs/dmu_send.c: * ZoL < 0.7 does not handle [...]
- Before 0.7 is ZoL, so fair enough
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Issue #11956
Diffstat (limited to 'contrib/pyzfs')
-rw-r--r-- | contrib/pyzfs/libzfs_core/test/test_libzfs_core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py b/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py index 87138b305..d949d88d5 100644 --- a/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py +++ b/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py @@ -252,9 +252,9 @@ def skipUnlessBookmarksSupported(f): def snap_always_unmounted_before_destruction(): - # Apparently ZoL automatically unmounts the snapshot + # Apparently OpenZFS automatically unmounts the snapshot # only if it is mounted at its default .zfs/snapshot - # mountpoint. + # mountpoint under Linux. return ( platform.system() != 'Linux', 'snapshot is not auto-unmounted') |