2010-09-13 17:41:38 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-10-07 13:55:36 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (pkgs) postgresql gzip;
|
|
|
|
|
|
|
|
location = config.services.postgresqlBackup.location ;
|
|
|
|
|
2010-09-13 17:41:38 +02:00
|
|
|
postgresqlBackupCron = db:
|
|
|
|
''
|
|
|
|
${config.services.postgresqlBackup.period} root ${postgresql}/bin/pg_dump ${db} | ${gzip}/bin/gzip -c > ${location}/${db}.gz
|
2011-09-14 20:20:50 +02:00
|
|
|
'';
|
2009-10-07 13:55:36 +02:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-07 13:55:36 +02:00
|
|
|
services.postgresqlBackup = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable PostgreSQL dumps.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
period = mkOption {
|
|
|
|
default = "15 01 * * *";
|
|
|
|
description = ''
|
|
|
|
This option defines (in the format used by cron) when the
|
|
|
|
databases should be dumped.
|
|
|
|
The default is to update at 01:15 (at night) every day.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
databases = mkOption {
|
|
|
|
default = [];
|
|
|
|
description = ''
|
2011-09-14 20:20:50 +02:00
|
|
|
List of database names to dump.
|
2009-10-07 13:55:36 +02:00
|
|
|
'';
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-07 13:55:36 +02:00
|
|
|
location = mkOption {
|
|
|
|
default = "/var/backup/postgresql";
|
|
|
|
description = ''
|
|
|
|
Location to put the gzipped PostgreSQL database dumps.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.services.postgresqlBackup.enable {
|
2010-09-13 17:41:38 +02:00
|
|
|
services.cron.systemCronJobs = map postgresqlBackupCron config.services.postgresqlBackup.databases;
|
2009-10-07 13:55:36 +02:00
|
|
|
|
2012-03-15 15:21:17 +01:00
|
|
|
system.activationScripts.postgresqlBackup = stringAfter [ "stdio" "users" ]
|
2010-09-13 17:41:38 +02:00
|
|
|
''
|
|
|
|
mkdir -m 0700 -p ${config.services.postgresqlBackup.location}
|
|
|
|
chown root ${config.services.postgresqlBackup.location}
|
|
|
|
'';
|
2009-10-07 13:55:36 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-07 13:55:36 +02:00
|
|
|
}
|