From 57b30669879a3940d541b8b798c364620d3e3323 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 25 Jul 2017 20:32:32 -0700 Subject: [PATCH] Fix for generate-borgmatic-config writing config with invalid one_file_system value. --- borgmatic/config/schema.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/borgmatic/config/schema.yaml b/borgmatic/config/schema.yaml index 64fed0794..07e245d6f 100644 --- a/borgmatic/config/schema.yaml +++ b/borgmatic/config/schema.yaml @@ -6,10 +6,10 @@ map: Where to look for files to backup, and where to store those backups. See https://borgbackup.readthedocs.io/en/stable/quickstart.html and https://borgbackup.readthedocs.io/en/stable/usage.html#borg-create for details. - required: True + required: true map: source_directories: - required: True + required: true seq: - type: scalar desc: List of source directories to backup (required). Globs are expanded. @@ -20,13 +20,13 @@ map: one_file_system: type: bool desc: Stay in same file system (do not cross mount points). - example: yes + example: true remote_path: type: scalar desc: Alternate Borg remote executable. Defaults to "borg". example: borg1 repositories: - required: True + required: true seq: - type: scalar desc: | @@ -112,7 +112,7 @@ map: seq: - type: str enum: ['repository', 'archives', 'disabled'] - unique: True + unique: true desc: | List of consistency checks to run: "repository", "archives", or both. Defaults to both. Set to "disabled" to disable all consistency checks. See