Merge pull request #75692 from kampka/postgresql-backup-default

postgresql-backup: Use saner defaults for pg_dump
This commit is contained in:
Danylo Hlynskyi 2019-12-15 23:16:50 +02:00 committed by GitHub
commit c8c30fac9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ in {
pgdumpOptions = mkOption {
type = types.separatedString " ";
default = "-Cbo";
default = "-C";
description = ''
Command line options for pg_dump. This options is not used
if <literal>config.services.postgresqlBackup.backupAll</literal> is enabled.