mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
typos
This commit is contained in:
parent
89e32c298c
commit
aa96a95600
@ -1,6 +1,6 @@
|
|||||||
# 💽 Backends
|
# 💽 Backends
|
||||||
|
|
||||||
Backends are the ouputs of the backup process. Each location needs at least one.
|
Backends are the outputs of the backup process. Each location needs at least one.
|
||||||
|
|
||||||
```yaml | .autorestic.yml
|
```yaml | .autorestic.yml
|
||||||
backends:
|
backends:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Cron
|
# Cron
|
||||||
|
|
||||||
Often it is usefull to trigger backups autmatically. For this we can specify a `cron` attribute to each location.
|
Often it is usefully to trigger backups automatically. For this we can specify a `cron` attribute to each location.
|
||||||
|
|
||||||
```yaml | .autorestic.yml
|
```yaml | .autorestic.yml
|
||||||
locations:
|
locations:
|
||||||
@ -14,11 +14,11 @@ Here is a awesome website with [some examples](https://crontab.guru/examples.htm
|
|||||||
|
|
||||||
## Installing the cron
|
## Installing the cron
|
||||||
|
|
||||||
**This has to be done only once, regadless of now many cros you have in your config file.**
|
**This has to be done only once, regardless of now many cron jobs you have in your config file.**
|
||||||
|
|
||||||
To actually enable cron jobs you need something to call `autorestic cron` on a timed shedule.
|
To actually enable cron jobs you need something to call `autorestic cron` on a timed schedule.
|
||||||
Note that the shedule has nothing to do with the `cron` attribute in each location.
|
Note that the schedule has nothing to do with the `cron` attribute in each location.
|
||||||
My advise would be to trigger the command every 5min, but if you have a cronjob that runs only once a week, it's probably enough to shedule it once a day.
|
My advise would be to trigger the command every 5min, but if you have a cronjob that runs only once a week, it's probably enough to schedule it once a day.
|
||||||
|
|
||||||
### Crontab
|
### Crontab
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Excluding files
|
# Excluding files
|
||||||
|
|
||||||
If you want to exclude certain files or folders it done easily by specifiyng the right flags in the location you desire to filter.
|
If you want to exclude certain files or folders it done easily by specifying the right flags in the location you desire to filter.
|
||||||
|
|
||||||
The flags are taken straight from the [restic cli exclude rules](https://restic.readthedocs.io/en/latest/040_backup.html#excluding-files) so you can use any flag used there.
|
The flags are taken straight from the [restic cli exclude rules](https://restic.readthedocs.io/en/latest/040_backup.html#excluding-files) so you can use any flag used there.
|
||||||
|
|
||||||
|
@ -14,11 +14,11 @@ locations:
|
|||||||
options:
|
options:
|
||||||
forget:
|
forget:
|
||||||
keep-last: 5 # always keep at least 5 snapshots
|
keep-last: 5 # always keep at least 5 snapshots
|
||||||
keep-hourly: 3 # keep 3 last hourly shapshots
|
keep-hourly: 3 # keep 3 last hourly snapshots
|
||||||
keep-daily: 4 # keep 4 last daily shapshots
|
keep-daily: 4 # keep 4 last daily snapshots
|
||||||
keep-weekly: 1 # keep 1 last weekly shapshots
|
keep-weekly: 1 # keep 1 last weekly snapshots
|
||||||
keep-monthly: 12 # keep 12 last monthly shapshots
|
keep-monthly: 12 # keep 12 last monthly snapshots
|
||||||
keep-yearly: 7 # keep 7 last yearly shapshots
|
keep-yearly: 7 # keep 7 last yearly snapshots
|
||||||
keep-within: '2w' # keep snapshots from the last 2 weeks
|
keep-within: '2w' # keep snapshots from the last 2 weeks
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -22,6 +22,6 @@ Paths can be absolute or relative. If relative they are resolved relative to the
|
|||||||
|
|
||||||
## `to`
|
## `to`
|
||||||
|
|
||||||
This is einther a single backend or an array of backends. The backends have to be configured in the same config file.
|
This is either a single backend or an array of backends. The backends have to be configured in the same config file.
|
||||||
|
|
||||||
> :ToCPrevNext
|
> :ToCPrevNext
|
||||||
|
@ -15,7 +15,7 @@ vim .autorestic.yml
|
|||||||
For a quick overview:
|
For a quick overview:
|
||||||
|
|
||||||
- `locations` can be seen as the inputs and `backends` the output where the data is stored and backed up.
|
- `locations` can be seen as the inputs and `backends` the output where the data is stored and backed up.
|
||||||
- One `location` can have one or multiple `backends` for redudancy.
|
- One `location` can have one or multiple `backends` for redundancy.
|
||||||
- One `backend` can also be the target for multiple `locations`.
|
- One `backend` can also be the target for multiple `locations`.
|
||||||
|
|
||||||
> **⚠️ WARNING ⚠️**
|
> **⚠️ WARNING ⚠️**
|
||||||
|
Loading…
Reference in New Issue
Block a user