You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
400 B
16 lines
400 B
# Cron
|
|
|
|
Often it is usefull to trigger backups autmatically. For this we can specify a `cron` attribute to each location.
|
|
|
|
```yaml | .autorestic.yml
|
|
locations:
|
|
my-location:
|
|
from: /data
|
|
to: my-backend
|
|
cron: '0 3 * * 0' # Every Sunday at 3:00
|
|
```
|
|
|
|
Here is a awesome website with [some examples](https://crontab.guru/examples.html) and an [explorer](https://crontab.guru/)
|
|
|
|
> :ToCPrevNext
|