From 36e476124186f2d0eb3ecb322bc4bf5456dff9b0 Mon Sep 17 00:00:00 2001 From: cy33hc Date: Fri, 14 Apr 2023 21:57:28 -0700 Subject: [PATCH] Update README.md --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1841829..4d4088d 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,13 @@ To distinguish between FTP, SMB, NFS, WebDAV or HTTP, the URL must be prefix wit - The url format for NFS is ``` - nfs://hostname[:port]/export_path[?arg=val[&arg=val]*] + nfs://hostname[:port]/export_path[?uid=&gid=] - hostname can be the textual hostname or an IP address. hostname is required - port is optional and defaults to 2049 if not provided - export_path is required + - uid is the UID value to use when talking to the server. Defaults to 65534 if not specified. + - gid is the GID value to use when talking to the server. Defaults to 65534 if not specified. Special characters in 'path' are escaped using %-hex-hex syntax. @@ -45,10 +47,6 @@ To distinguish between FTP, SMB, NFS, WebDAV or HTTP, the URL must be prefix wit nfs://192.168.0.1/my?path?uid=1000&gid=1000 must be escaped as nfs://192.168.0.1/my%3Fpath?uid=1000&gid=1000 - - Arguments supported are : - uid= : UID value to use when talking to the server. Defaults to 65534 if not specified. - gid= : GID value to use when talking to the server. Defaults to 65534 if not specified. ``` - The url format for WebDAV is