Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: add example for pruning old backups #78

Merged
merged 1 commit into from
Sep 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ jobs:
# we can also disable google drive trash using flags
flags:
drive-use-trash: false
# In case we also want to prune backups that are older than 14 days
- name: Prune Old Backups
schedule: 10 5 * * *
command: delete
sources:
- 'hassbackup:'
flags:
min-age: 14d
dry_run: false
config_path: /homeassistant/rclone.conf
```
Expand Down