summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorDanylo Hlynskyi <abcz2.uprola@gmail.com>2019-12-15 23:16:50 +0200
committerGitHub <noreply@github.com>2019-12-15 23:16:50 +0200
commitc8c30fac9b37e6f173d14cbf8e245bf6a856b0fd (patch)
tree0dacf84fe57603ffd3400b08b41d73f4bd26aa2f /nixos
parent169fb13569a5fcd701b8da05dea27074917319ab (diff)
parent2387deec3df97cdd3e0295407925837f2e1b0603 (diff)
downloadnixpkgs-c8c30fac9b37e6f173d14cbf8e245bf6a856b0fd.tar
nixpkgs-c8c30fac9b37e6f173d14cbf8e245bf6a856b0fd.tar.gz
nixpkgs-c8c30fac9b37e6f173d14cbf8e245bf6a856b0fd.tar.bz2
nixpkgs-c8c30fac9b37e6f173d14cbf8e245bf6a856b0fd.tar.lz
nixpkgs-c8c30fac9b37e6f173d14cbf8e245bf6a856b0fd.tar.xz
nixpkgs-c8c30fac9b37e6f173d14cbf8e245bf6a856b0fd.tar.zst
nixpkgs-c8c30fac9b37e6f173d14cbf8e245bf6a856b0fd.zip
Merge pull request #75692 from kampka/postgresql-backup-default
postgresql-backup: Use saner defaults for pg_dump
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/backup/postgresql-backup.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/backup/postgresql-backup.nix b/nixos/modules/services/backup/postgresql-backup.nix
index e768d1b9918..580c7ce68f1 100644
--- a/nixos/modules/services/backup/postgresql-backup.nix
+++ b/nixos/modules/services/backup/postgresql-backup.nix
@@ -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.