2
0
mirror of https://github.com/meganz/MEGAcmd synced 2025-08-31 05:45:11 +00:00

Change --remember option to --temporarily for fuse enable and disable

This commit is contained in:
Diego Ximenez
2025-03-06 13:29:03 +01:00
parent cd972cbcb8
commit 8bb54eb3f4
7 changed files with 46 additions and 27 deletions

View File

@@ -1,7 +1,7 @@
### fuse-disable
Disables a specified FUSE mount.
Usage: `fuse-disable [--remember] (ID|localPath|name)`
Usage: `fuse-disable [--temporarily] (ID|localPath|name)`
<pre>
After a mount has been disabled, its cloud entities will no longer be accessible via the mount's local path.
@@ -11,8 +11,8 @@ ID|localPath|name The identifier of the mount we want to disable. It can be on
Local path: The local mount point in the filesystem.
Name: the user-friendly name of the mount, set when it was added or by fuse-config.
Options:
--remember Specifies whether to remember that this mount is disabled. Note that if this option is specified
on a transient mount, that mount will become persistent.
--temporarily Specifies whether the mount should be disabled only until the server is restarted.
Has no effect on transient mounts, since any action on them is always temporary.
Note: FUSE commands are only available on Linux.
</pre>

View File

@@ -1,7 +1,7 @@
### fuse-enable
Enables a specified FUSE mount.
Usage: `fuse-enable [--remember] (ID|localPath|name)`
Usage: `fuse-enable [--temporarily] (ID|localPath|name)`
<pre>
After a mount has been enabled, its cloud entities will be accessible via the mount's local path.
@@ -12,8 +12,8 @@ ID|localPath|name The identifier of the mount we want to enable. It can be one
Name: the user-friendly name of the mount, set when it was added or by fuse-config.
Options:
--remember Specifies whether to remember that this mount is enabled. Note that if this option is specified
on a transient mount, that mount will become persistent.
--temporarily Specifies whether the mount should be enabled only until the server is restarted.
Has no effect on transient mounts, since any action on them is always temporary.
Note: FUSE commands are only available on Linux.
</pre>