From 785d0c4f9ad424710b2107affd73edfce00752da Mon Sep 17 00:00:00 2001 From: CHAIR <95461636+RaneyDazed@users.noreply.github.com> Date: Wed, 18 Sep 2024 10:57:39 -0500 Subject: [PATCH] refactor: References/Cloudplow: Update rclone binary path in default config (#249) * refactor: Update rclone binary path in default config This commit updates the default config file by adding the path to the rclone binary as "/usr/bin/rclone". This change ensures that the correct binary is used for rclone operations. * Correct the rclone binary path in config * refactor: Replace Pushover notifications with Apprise integration. This commit updates the second Cloudplow configuration by replacing the existing Pushover notifications with a new Apprise/Discord integration. The Apprise integration allows users to receive upload status notifications on a Discord channel via a webhook. * Fix spacing. I use 2 spaces in my own config. :p * Fix the REST of the spaces. --- docs/reference/cloudplow.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/reference/cloudplow.md b/docs/reference/cloudplow.md index 6812c6f48..31f8ad444 100644 --- a/docs/reference/cloudplow.md +++ b/docs/reference/cloudplow.md @@ -19,7 +19,8 @@ This is the default config; it contains a single remote/uploader pair. This set { "core": { "dry_run": false, - "rclone_config_path": "/home/seed/.config/rclone/rclone.conf" + "rclone_binary_path": "/usr/bin/rclone", + "rclone_config_path": "/home/seed/.config/rclone/rclone.conf" }, "hidden": {}, "notifications": { @@ -216,11 +217,10 @@ This config uploads everything from `/mnt/local/Media` to `google:/Media` [trigg }, "hidden": {}, "notifications": { - "Pushover": { - "app_token": "xxxxx", - "priority": 0, - "service": "pushover", - "user_token": "xxxxx" + "apprise": { + "service": "apprise", + "url": "discord://Webhook_ID/Webhook_Token", + "title": "Cloudplow-Upload" } }, "nzbget": { @@ -338,7 +338,8 @@ This is the default config with Pushover notifications configured. { "core": { "dry_run": false, - "rclone_config_path": "/home/seed/.config/rclone/rclone.conf" + "rclone_binary_path": "/usr/bin/rclone", + "rclone_config_path": "/home/seed/.config/rclone/rclone.conf" }, "hidden": {}, "notifications": {