rustic
rustic copied to clipboard
rustic - fast, encrypted, and deduplicated backups powered by Rust
Environment variables in the config files is not properly expanded on windows I set the following ``` [backup] exclude-if-present = [".nobackup", "CACHEDIR.TAG"] iglob-file = ["C:/ProgramData/rustic/ignore.iglob.list"] ``` this is working. but...
reduce memory usage of the `restore` command by removing the data entries from the index before doing the actual restore. see https://github.com/rustic-rs/rustic/issues/1067 TODO: - [ ] remove Cargo changes once...
> it gives the possibility to set a location of their own to the users. yeah, users can set a custom location with the environment variable, but `"RUSTIC_HOME": "$dir"` is...
To make rustic more portable, we can use `RUSTIC_HOME` to locate the user's wanted config directories without relying on conventional/standard directories varying on the operating system. On Windows, we add...
I'm restoring files from the backup (rclone+sftp). Sometimes it panics: ``` [INFO] total restore size: 2.3 GiB [00:01:16] restoring file contents... ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 11.99 MiB/2.35 GiB 49.92 KiB/s (ETA 4h)The application...
If I want to use `~` in any path in the global config, it will not parse the config and stop with a non-helpful error. For example if I want...
TL;DR: use `repository = "opendal:s3"` like specifed in https://github.com/rustic-rs/rustic/tree/main/config/services As this works: ``` [repository] repository = "opendal:s3" password = "pass" [repository.options] root = "/" bucket = "test-dal" endpoint = "https://p7v1.ldn.idrivee2-40.com"...
Note: In meanwhile, use the following workaround: ``` [repository] repository = "opendal:sftp" password = "mypassword" [repository.options] user = "myuser" endpoint = "host:port" root = "path/to/repo" ```
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [taiki-e/install-action](https://togithub.com/taiki-e/install-action) | action | digest | `8984d60` -> `cf31de7` | ---...
Investigate possibilities to create `stable` and `nightly` release channels in combination with `self-update` command. Would probably involve some settings that need to be made persistent in `RUSTIC_HOME`, to be able...