summary refs log tree commit diff
path: root/nixos/modules/services/backup/postgresql-backup.nix
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-06-19 18:22:46 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-06-20 17:58:48 +0200
commit6dc06fdd282dcfd1ca46160b196dc2c2676aa86d (patch)
treeb0d6291209e1043342b79d20fb613518f210384a /nixos/modules/services/backup/postgresql-backup.nix
parentaee0f49fe6725f1a9551b546a757f523bd560681 (diff)
downloadnixpkgs-6dc06fdd282dcfd1ca46160b196dc2c2676aa86d.tar
nixpkgs-6dc06fdd282dcfd1ca46160b196dc2c2676aa86d.tar.gz
nixpkgs-6dc06fdd282dcfd1ca46160b196dc2c2676aa86d.tar.bz2
nixpkgs-6dc06fdd282dcfd1ca46160b196dc2c2676aa86d.tar.lz
nixpkgs-6dc06fdd282dcfd1ca46160b196dc2c2676aa86d.tar.xz
nixpkgs-6dc06fdd282dcfd1ca46160b196dc2c2676aa86d.tar.zst
nixpkgs-6dc06fdd282dcfd1ca46160b196dc2c2676aa86d.zip
nixos/pgbackup: rename option period -> startAt
Diffstat (limited to 'nixos/modules/services/backup/postgresql-backup.nix')
-rw-r--r--nixos/modules/services/backup/postgresql-backup.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/backup/postgresql-backup.nix b/nixos/modules/services/backup/postgresql-backup.nix
index 93dcd2f9647..2ec78ce6f2c 100644
--- a/nixos/modules/services/backup/postgresql-backup.nix
+++ b/nixos/modules/services/backup/postgresql-backup.nix
@@ -34,7 +34,7 @@ let
         User = "postgres";
       };
 
-      startAt = cfg.period;
+      startAt = cfg.startAt;
     };
 
 in {
@@ -50,10 +50,10 @@ in {
         '';
       };
 
-      period = mkOption {
+      startAt = mkOption {
         default = "*-*-* 01:15:00";
         description = ''
-          This option defines (in the format used by <literal>systemd.time</literal>) when the
+          This option defines (see <literal>systemd.time</literal> for format) when the
           databases should be dumped.
           The default is to update at 01:15 (at night) every day.
         '';