mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-28 20:16:41 +03:00
added nixos modules to perform simple backup scheduling for directories, postgresql and mysql database dumps
svn path=/nixos/trunk/; revision=17690
This commit is contained in:
parent
9b5611e35e
commit
704e56667a
4 changed files with 254 additions and 0 deletions
71
modules/services/backup/postgresql-backup.nix
Normal file
71
modules/services/backup/postgresql-backup.nix
Normal file
|
@ -0,0 +1,71 @@
|
|||
{pkgs, config, ...}:
|
||||
|
||||
let
|
||||
inherit (pkgs.lib) mkOption mkIf singleton concatStrings;
|
||||
inherit (pkgs) postgresql gzip;
|
||||
|
||||
location = config.services.postgresqlBackup.location ;
|
||||
|
||||
postgresqlBackupCron = db : ''
|
||||
${config.services.postgresqlBackup.period} root ${postgresql}/bin/pg_dump ${db} | ${gzip}/bin/gzip -c > ${location}/${db}.gz
|
||||
'';
|
||||
|
||||
in
|
||||
|
||||
{
|
||||
|
||||
###### interface
|
||||
|
||||
options = {
|
||||
|
||||
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 = ''
|
||||
List of database names to dump.
|
||||
'';
|
||||
};
|
||||
|
||||
location = mkOption {
|
||||
default = "/var/backup/postgresql";
|
||||
description = ''
|
||||
Location to put the gzipped PostgreSQL database dumps.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
###### implementation
|
||||
config = mkIf config.services.postgresqlBackup.enable {
|
||||
services.cron = {
|
||||
systemCronJobs =
|
||||
pkgs.lib.optional
|
||||
config.services.postgresqlBackup.enable
|
||||
(concatStrings (map postgresqlBackupCron config.services.postgresqlBackup.databases));
|
||||
};
|
||||
|
||||
system.activationScripts.postgresqlBackup = pkgs.stringsWithDeps.noDepEntry ''
|
||||
mkdir -m 0700 -p ${config.services.postgresqlBackup.location}
|
||||
chown root ${config.services.postgresqlBackup.location}
|
||||
'';
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue