From 87e1efa997f91811379e75d44619ea45276ce3d7 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 4 Oct 2018 11:37:42 +0100 Subject: [PATCH] mount, vfs: Remove EXPERIMENTAL tags rclone mount and the --vfs-cache-mode has been tested extensively by users now so removing the EXPERIMENTAL tag is appropriate. --- cmd/mountlib/mount.go | 6 ++---- vfs/help.go | 2 -- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/cmd/mountlib/mount.go b/cmd/mountlib/mount.go index 231923ee6..93f73b6d4 100644 --- a/cmd/mountlib/mount.go +++ b/cmd/mountlib/mount.go @@ -66,14 +66,12 @@ func checkMountEmpty(mountpoint string) error { func NewMountCommand(commandName string, Mount func(f fs.Fs, mountpoint string) error) *cobra.Command { var commandDefintion = &cobra.Command{ Use: commandName + " remote:path /path/to/mountpoint", - Short: `Mount the remote as a mountpoint. **EXPERIMENTAL**`, + Short: `Mount the remote as file system on a mountpoint.`, Long: ` rclone ` + commandName + ` allows Linux, FreeBSD, macOS and Windows to mount any of Rclone's cloud storage systems as a file system with FUSE. -This is **EXPERIMENTAL** - use with care. - First set up your remote using ` + "`rclone config`" + `. Check it works with ` + "`rclone ls`" + ` etc. Start the mount like this @@ -148,7 +146,7 @@ File systems expect things to be 100% reliable, whereas cloud storage systems are a long way from 100% reliable. The rclone sync/copy commands cope with this with lots of retries. However rclone ` + commandName + ` can't use retries in the same way without making local copies of the -uploads. Look at the **EXPERIMENTAL** [file caching](#file-caching) +uploads. Look at the [file caching](#file-caching) for solutions to make ` + commandName + ` mount more reliable. ### Attribute caching diff --git a/vfs/help.go b/vfs/help.go index f9d71fae5..c9c423655 100644 --- a/vfs/help.go +++ b/vfs/help.go @@ -46,8 +46,6 @@ The maximum memory used by rclone for buffering can be up to ### File Caching -**NB** File caching is **EXPERIMENTAL** - use with care! - These flags control the VFS file caching options. The VFS layer is used by rclone mount to make a cloud storage system work more like a normal file system.