Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iml-backup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
iml-backup
Merge requests
!75
Prune and verify
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Prune and verify
prune_and_verify
into
master
Overview
0
Commits
2
Pipelines
0
Changes
11
Merged
Hahn Axel (hahn)
requested to merge
prune_and_verify
into
master
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
11
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
0a99dd92
2 commits,
2 years ago
11 files
+
273
−
68
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
docs/30_Configuration/50_File_transfer.job.md
+
25
−
0
View file @ 0a99dd92
Edit in single-file editor
Open in Web IDE
Show full file
@@ -107,6 +107,14 @@ sambashares = 1
restore-path = /restore
# ----------------------------------------------------------------------
# automatic tasks on each backup run
# ----------------------------------------------------------------------
# number of days when to prune and verify backup.
# set it to 0 to run prune and verify in each backup run.
prune-after = 3
verify-after = 7
# ----------------------------------------------------------------------
#
@@ -239,6 +247,15 @@ restore any data anymore.
`passphrase = EnterYourSecretHere`
## Prune-after
You can define how often to prune old data.
Set an integer for age in days here. If it is 0 then it will be executed on each backup run.
`prune-after = 3`
Remark: You can force the prune functionality by executing
`transfer.sh prune`
## restic_*
Variables that are specific for restic. They will be used when you set
@@ -334,3 +351,11 @@ Duplicity supports 2 modes.
see also
**bin**
## Verify-after
You can define how often to verify integrity of the backup repoitory data.
Set an integer for age in days here. If it is 0 then it will be executed on each backup run.
`verify-after = 3`
Remark: You can force the verify functionality by executing
`transfer.sh verify`
\ No newline at end of file
Loading