Bug 192019 - zfs(8) manpage incorrectly lists 'casesensitivity' as unsupported on FreeBSD
Summary: zfs(8) manpage incorrectly lists 'casesensitivity' as unsupported on FreeBSD
Status: Closed FIXED
Alias: None
Product: Documentation
Classification: Unclassified
Component: Books & Articles (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Some People
Assignee: Allan Jude
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-07-21 20:07 UTC by Nikolai Lifanov
Modified: 2014-09-25 20:53 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nikolai Lifanov 2014-07-21 20:07:24 UTC
From zfs(8):

     casesensitivity=sensitive | insensitive | mixed
           The casesensitivity property is currently not supported on FreeBSD.

On 10.0-RELEASE-p7 running GENERIC:

# zfs create -o casesensitivity=insensitive -o mountpoint=/tmp/i tank/i
# echo a >> /tmp/i/F
# echo b >> /tmp/i/f
# ls /tmp/i
F
# cat /tmp/i/F
a
b
# zfs get casesensitivity tank/i
NAME    PROPERTY         VALUE        SOURCE
tank/i  casesensitivity  insensitive  -

The man page should be updated to reflect that this feature works.
Comment 1 Allan Jude freebsd_committer freebsd_triage 2014-09-25 20:53:11 UTC
Fixed in r263459

http://svnweb.freebsd.org/base?view=revision&revision=263459