Merge pull request #111427 from helsinki-systems/postgresql

This commit is contained in:
Sandro 2021-02-01 12:39:20 +01:00 committed by GitHub
commit d76eec858c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,7 @@ in {
startAt = mkOption {
default = "*-*-* 01:15:00";
type = types.str;
description = ''
This option defines (see <literal>systemd.time</literal> for format) when the
databases should be dumped.
@ -70,6 +71,7 @@ in {
databases = mkOption {
default = [];
type = types.listOf types.str;
description = ''
List of database names to dump.
'';
@ -77,6 +79,7 @@ in {
location = mkOption {
default = "/var/backup/postgresql";
type = types.path;
description = ''
Location to put the gzipped PostgreSQL database dumps.
'';