From 463a133a63feedb3fbad2cc36bba3b939b604ced Mon Sep 17 00:00:00 2001 From: Edward Shornock Date: Fri, 19 Jun 2020 13:06:22 +0300 Subject: [PATCH] Ensure schema lines are less than 80 characters in length --- borgmatic/config/schema.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/borgmatic/config/schema.yaml b/borgmatic/config/schema.yaml index bddd6fb6..79f14dd6 100644 --- a/borgmatic/config/schema.yaml +++ b/borgmatic/config/schema.yaml @@ -558,11 +558,13 @@ map: example: directory ssl_mode: type: str - enum: ['disable', 'allow', 'prefer', 'require', 'verify-ca', 'verify-full'] + enum: ['disable', 'allow', 'prefer', + 'require', 'verify-ca', 'verify-full'] desc: | - SSL mode to use to connect to the database server. One of "disable", "allow", "prefer", - "require", "verify-ca" or "verify-full". Defaults to "disable". See - https://www.postgresql.org/docs/current/libpq-ssl.html for details. + SSL mode to use to connect to the database + server. One of "disable", "allow", "prefer", + "require", "verify-ca" or "verify-full". + Defaults to "disable". example: disable ssl_cert: type: str @@ -577,7 +579,8 @@ map: ssl_root_cert: type: str desc: | - Path to a root certificate containing a list of trusted certificate authorities. + Path to a root certificate containing a list of + trusted certificate authorities. example: "/root/.postgresql/root.crt" ssl_crl: type: str