summaryrefslogtreecommitdiff
path: root/mount.cifs.rst
AgeCommit message (Collapse)AuthorFilesLines
2020-09-03Separate binary names using comma in mount.cifs.rstSergio Durigan Junior1-3/+3
According to lexgrog(1), when a manpage refers to multiple programs their names should be separated using a comma and a whitespace. This helps silence a lintian warning when building cifs-utils on Debian. Signed-off-by: Sergio Durigan Junior <sergio.durigan@canonical.com>
2020-09-03mount.cifs.rst: add nolease mount optionPavel Shilovsky1-0/+6
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
2019-12-12Add support for smb3 alias/fstype in mount.cifs.cKenneth D'souza1-3/+9
As we will slowly move towards smb3 filesystem, supporting through "mount -t smb3" is important. Signed-off-by: Kenneth D'souza <kdsouza@redhat.com>
2019-12-12mount.cifs.rst: remove prefixpath mount option.Kenneth D'souza1-6/+0
This option is deprecated and currently ignored since kernel v3.10 Signed-off-by: Kenneth D'souza <kdsouza@redhat.com> Reviewed-by: Aurelien Aptel <aaptel@suse.com>
2019-04-05Fix authors and maintainersPavel Shilovsky1-3/+3
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
2019-04-05mount.cifs.rst: mention kernel version for snapshotsPavel Shilovsky1-1/+2
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com> Reviewed-by: Paulo Alcantara <palcantara@suse.de>
2019-04-05Update man page for mount.cifs to add new optionsSteve French1-38/+60
Add description of "snapshot" and "handletimeout" mount options and a security section noting that the use of cifs is discouraged, and various minor updates. Signed-off-by: Steve French <stfrench@microsoft.com> Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com> Reviewed-by: Paulo Alcantara <palcantara@suse.de>
2019-02-15mount.cifs.rst: update vers=3.1.1 option descriptionPavel Shilovsky1-1/+1
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
2019-02-15Update mount.cifs with vers=default mount option and SMBv3.0.2Kenneth D'souza1-1/+5
Add vers=3.0.2 as a valid option for SMBv3.0.2 and explain behavior of vers=default. Signed-off-by: Kenneth D'souza <kdsouza@redhat.com>
2018-08-17mount.cifs.rst: document vers=3.02 mount optionPavel Shilovsky1-0/+1
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
2018-08-17mount.cifs.rst: document vers=3 mount optionPavel Shilovsky1-0/+1
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
2018-08-17mount.cifs.rst: more cleanupsAurelien Aptel1-32/+29
* remove duplicates (netbiosname, rdma) * remove snapshot * document nostrictsync, domain, domainauto better * point to vers= when talking about version requirements * typos Signed-off-by: Aurelien Aptel <aaptel@suse.com>
2018-07-15mount.cifs.rst: document missing options, correct wrong onesAurélien Aptel1-32/+79
Signed-off-by: Aurelien Aptel <aaptel@suse.com>
2018-07-15manpage: update mount.cifs manpage with info about rdma optionKenneth Dsouza1-0/+5
Signed-off-by: Kenneth Dsouza <kdsouza@redhat.com>
2018-07-10mount.cifs.rst: document new (no)handlecache mount optionAurelien Aptel1-0/+10
Signed-off-by: Aurelien Aptel <aaptel@suse.com> Reviewed-by: Steve French <smfrench@gmail.com> Reviewed-by: Pavel Shilovsky <piastryyy@gmail.com>
2018-07-10docs: cleanup rst formatingAurelien Aptel1-5/+4
Signed-off-by: Aurelien Aptel <aaptel@suse.com> Reviewed-by: Steve French <smfrench@gmail.com> Reviewed-by: Pavel Shilovsky <piastryyy@gmail.com>
2018-03-09update mount.cifs manpage with info about echo_interval option.Kenneth Dsouza1-0/+9
Adds information regarding reconnection time. Acked-by: Sachin Prabhu <sprabhu@redhat.com> Signed-off-by: Kenneth D'souza <kdsouza@redhat.com>
2018-03-09manpage: update mount.cifs manpage with info about incomplete optionsZhang Xianwei1-5/+5
This commit a1f3acd40b265f134a97a739a6898b3958d206b9 modified mount parameters, but not updated mount.cifs manpage. Fix it. Signed-off-by: Zhang Xianwei <zhang.xianwei8@zte.com.cn>
2017-10-29manpage: update mount.cifs manpage with info about default version being mountedJeff Layton1-2/+6
Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com> Signed-off-by: Jeff Layton <jlayton@samba.org>
2017-10-23doc: convert pod files to rstJeff Layton1-0/+860
Aurelien did a big conversion of raw troff files into .pod docs in a recent patch. That worked out pretty well, but I have some reservations about using POD as a canonical format. While it does make it pretty simple to write manpages, it's sort of an obscure format, and is heavily associated with perl. Meanwhile, the kernel is slowly moving to using ReStructured Text as its documentation format. Given the simplicity of the cifs-utils manpages, I think we're better suited to using rst as a canonical format, rather than pod. This patch converts all of the .pod files in the code to .rst files, and fixes the Makefile and autoconf to use the correct tools to turn those into manpages. The conversion was done with the pod2rst script, with some by-hand modifications at the end to clean up the formatting and add the manual section numbers. It's not perfect and could probably use a second pass to clean up the warts in the formatting, but the content is all intact and it should be readable. Finally, convert the makefile rules to use standard SUFFIX rules instead of the non-portable GNU make % style extension rules. We don't really expect anyone to use anything other than GNU make here, but this silences an automake warning. Signed-off-by: Aurelien Aptel <aaptel@suse.com> Signed-off-by: Jeff Layton <jlayton@samba.org>