mehargags
(mehargags)
March 9, 2025, 7:48pm
1
I had previously asked here and was advised to use an alias.
However, alias do not at CRON level.
RClone should honour flags mentioned inside its config file so I don't have to mention explicitly in my crons
rclone --filter-from ~/.config/rclone/filters.txt
asdffdsa
(jojothehumanmonkey)
March 9, 2025, 7:54pm
2
might use environment variables
opened 11:04AM - 25 Oct 18 UTC
enhancement
IMPORTANT
configuration
Make a global config setting for rclone
In the rclone config file have config… uration for "profiles". These are default settings for all the rclone flags.
So the flag "--delete-during" would be stored like this in the config in the default profile.
```
[:default]
delete_during = true
```
Rclone would provide the `--profile` flag to use a different profile and provide `rclone config profile` to edit the profile with a config profile editor wizard.
Backend flags should be settable in the profile also - basically any flag that rclone has should be settable in the profile (just like it is settable in the environment already).
Extension idea: could inherit from other profiles.