mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-07 06:45:35 +00:00
35 lines
863 B
Plaintext
35 lines
863 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# resticprofile schedule
|
|
|
|
> Schedule backups and run them in the background.
|
|
> See also: `restic`, `resticprofile`, `resticprofile-unschedule`.
|
|
> More information: <https://creativeprojects.github.io/resticprofile/schedules/configuration/index.html>.
|
|
|
|
- Schedule default profile:
|
|
|
|
`resticprofile schedule`
|
|
|
|
- Schedule a profile (default profile is "default"):
|
|
|
|
`resticprofile --name "{{group_name}}" schedule`
|
|
|
|
- Schedule all profiles:
|
|
|
|
`resticprofile schedule --all`
|
|
|
|
- Don't start the job after installing:
|
|
|
|
`resticprofile schedule --no-start`
|
|
|
|
- Display status of scheduled jobs for a profile:
|
|
|
|
`resticprofile status {{[-n|--name]}} {{profile_name}}`
|
|
|
|
- Run a scheduled job manually (used by system scheduler):
|
|
|
|
`resticprofile run-schedule "backup@{{profile_name}}"`
|