diff --git a/docs/advanced/feeder.md b/docs/advanced/feeder.md index f8cecc742..041d5ea03 100644 --- a/docs/advanced/feeder.md +++ b/docs/advanced/feeder.md @@ -18,17 +18,20 @@ The following steps will be done on the Mediabox. ```yaml rclone: - enabled: true + enabled: yes remotes: # LEAVE OTHER REMOTES IN PLACE IF ANY - remote: feeder - template: sftp - upload: false - upload_from: /mnt/local/Media - vfs_cache: - enabled: false - max_age: 504h - size: 50G + settings: + mount: yes + template: sftp + union: yes + upload: no + upload_from: /mnt/local/Media + vfs_cache: + enabled: no + max_age: 504h + size: 50G version: latest ``` diff --git a/docs/reference/accounts.md b/docs/reference/accounts.md index f91f4adfe..8bdbc77d7 100644 --- a/docs/reference/accounts.md +++ b/docs/reference/accounts.md @@ -175,7 +175,7 @@ Each tab shows a "section" in the file. === "rclone" ```yaml rclone: - enabled: true + enabled: yes remotes: - remote: google settings: @@ -197,21 +197,21 @@ Each tab shows a "section" in the file. ```yaml rclone: - enabled: true + enabled: yes remotes: - remote: google settings: - mount: true + mount: yes template: google ... - remote: dropbox settings: - mount: false + mount: no template: dropbox ... - remote: minio settings: - mount: true + mount: yes template: /opt/mount-templates/custom/myminio.j2 ... ``` diff --git a/docs/reference/guides/chazguides/no-media.md b/docs/reference/guides/chazguides/no-media.md index 110bfb03e..0a0e2d1fc 100644 --- a/docs/reference/guides/chazguides/no-media.md +++ b/docs/reference/guides/chazguides/no-media.md @@ -107,14 +107,18 @@ Verify the contents of `settings.yml`: saltbox uses this to create the mount ser ```yaml remotes: - remote: google # this is the name of the rclone remote - template: google # this is the saltbox template - upload: true - upload_from: /mnt/local/Media - vfs_cache: - enabled: false - max_age: 504h - size: 50G + settings: + mount: yes + template: google # this is the saltbox template + union: yes + upload: yes + upload_from: /mnt/local/Media + vfs_cache: + enabled: no + max_age: 504h + size: 50G ``` + If you have to change those settings, rerun the `mounts` tag and go through this section again. Do not continue until those two file listings match. They won’t match mine; they should both show the same files from YOUR gdrive. diff --git a/docs/reference/guides/chazguides/teamdrive.md b/docs/reference/guides/chazguides/teamdrive.md index ded7d40c4..ddcef80c7 100644 --- a/docs/reference/guides/chazguides/teamdrive.md +++ b/docs/reference/guides/chazguides/teamdrive.md @@ -62,16 +62,19 @@ Let’s go! ```yaml rclone: - enabled: true + enabled: yes remotes: - remote: NAME_OF_THE_REMOTE_YOU_JUST_CREATED - template: MOUNT_TEMPLATE - upload: false # true to configure cloudplow upload for this remote - upload_from: /mnt/local/Media - vfs_cache: - enabled: false - max_age: 504h - size: 50G + settings: + mount: yes + template: MOUNT_TEMPLATE + union: yes + upload: no # true to configure cloudplow upload for this remote + upload_from: /mnt/local/Media + vfs_cache: + enabled: no + max_age: 504h + size: 50G version: latest ``` diff --git a/docs/reference/guides/rclone-remote-dropbox.md b/docs/reference/guides/rclone-remote-dropbox.md index a19b28ece..8fdc24ffd 100644 --- a/docs/reference/guides/rclone-remote-dropbox.md +++ b/docs/reference/guides/rclone-remote-dropbox.md @@ -202,16 +202,19 @@ Edit the other settings [`upload` and so forth] to suit your requirements. ```yaml rclone: - enabled: true + enabled: yes remotes: - remote: NAME_OF_THE_REMOTE_YOU_JUST_CREATED - template: dropbox - upload: false # toggle as needed - upload_from: /mnt/local/Media - vfs_cache: - enabled: false - max_age: 504h - size: 50G + settings: + mount: yes + template: dropbox + union: yes + upload: no # toggle as needed + upload_from: /mnt/local/Media + vfs_cache: + enabled: no + max_age: 504h + size: 50G version: latest ``` diff --git a/docs/reference/local-storage.md b/docs/reference/local-storage.md index 3015dd92c..5e87e3e07 100644 --- a/docs/reference/local-storage.md +++ b/docs/reference/local-storage.md @@ -19,7 +19,7 @@ Then disable rclone in `settings.yml`: ```ini rclone: - enabled: false + enabled: no remotes: ... ``` @@ -39,18 +39,22 @@ First, create an rclone remote pointing to your NAS using whatever connection sc Then fill out the remote details in `settings.yml` ```ini rclone: - enabled: true + enabled: yes remotes: - remote: THE_NAME_OF_THE_REMOTE_YOU_JUST_CREATED - template: sftp # whatever template or service file is appropriate - upload: true - upload_from: /mnt/local/Media - vfs_cache: - enabled: false - max_age: 504h - size: 50G + settings: + mount: yes + template: sftp # whatever template or service file is appropriate + union: yes + upload: yes + upload_from: /mnt/local/Media + vfs_cache: + enabled: no + max_age: 504h + size: 50G version: latest ``` -It should go without saying that you need to change `THE_NAME_OF_THE_REMOTE_YOU_JUST_CREATED` to whatevcer you called the rclone remote you created pointing at the NAS. + +It should go without saying that you need to change `THE_NAME_OF_THE_REMOTE_YOU_JUST_CREATED` to whatever you called the rclone remote you created pointing at the NAS. Then run the regular saltbox install. Your NAS [or whatever] will be mounted at `/mnt/remote/THE_NAME_OF_THE_REMOTE_YOU_JUST_CREATED`, added to the unionfs, and Cloudplow will handle moving from your local disk to the NAS. diff --git a/docs/saltbox/install/install.md b/docs/saltbox/install/install.md index f662a6ef3..b59589aee 100644 --- a/docs/saltbox/install/install.md +++ b/docs/saltbox/install/install.md @@ -155,35 +155,41 @@ To edit any of the following configuration files use the command written in the subdomain: login # (2)! downloads: /mnt/unionfs/downloads # (3)! rclone: - enabled: true # (4)! + enabled: yes # (4)! remotes: # (5)! - remote: google # (6)! settings: mount: yes # (7)! template: google # (8)! union: yes # (9)! - upload: true # (10)! + upload: yes # (10)! upload_from: /mnt/local/Media # (11)! vfs_cache: - enabled: false # (12)! + enabled: no # (12)! max_age: 504h # (13)! size: 50G # (14)! - remote: dropbox - template: dropbox - upload: false - upload_from: /mnt/local/Media - vfs_cache: - enabled: false - max_age: 504h - size: 50G + settings: + mount: yes + template: dropbox + union: yes + upload: no + upload_from: /mnt/local/Media + vfs_cache: + enabled: no + max_age: 504h + size: 50G - remote: feeder - template: sftp - upload: false - upload_from: /mnt/local/Media - vfs_cache: - enabled: false - max_age: 504h - size: 50G + settings: + mount: yes + template: sftp + union: yes + upload: no + upload_from: /mnt/local/Media + vfs_cache: + enabled: no + max_age: 504h + size: 50G version: latest # (15)! shell: bash # (16)! transcodes: /mnt/local/transcodes # (17)!