mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-13 03:08:16 +01:00
The new `\restrict` migitation creates random keys in the dump file by
default, which breaks a before/after test for the backup module. By
making the restrict key reproducible, the test passes again.
(cherry picked from commit 87e1134406)
197 lines
5.3 KiB
Nix
197 lines
5.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
|
|
cfg = config.services.postgresqlBackup;
|
|
|
|
postgresqlBackupService =
|
|
db: dumpCmd:
|
|
let
|
|
compressSuffixes = {
|
|
"none" = "";
|
|
"gzip" = ".gz";
|
|
"zstd" = ".zstd";
|
|
};
|
|
compressSuffix = lib.getAttr cfg.compression compressSuffixes;
|
|
|
|
compressCmd = lib.getAttr cfg.compression {
|
|
"none" = "cat";
|
|
"gzip" = "${pkgs.gzip}/bin/gzip -c -${toString cfg.compressionLevel} --rsyncable";
|
|
"zstd" = "${pkgs.zstd}/bin/zstd -c -${toString cfg.compressionLevel} --rsyncable";
|
|
};
|
|
|
|
mkSqlPath = prefix: suffix: "${cfg.location}/${db}${prefix}.sql${suffix}";
|
|
curFile = mkSqlPath "" compressSuffix;
|
|
prevFile = mkSqlPath ".prev" compressSuffix;
|
|
prevFiles = map (mkSqlPath ".prev") (lib.attrValues compressSuffixes);
|
|
inProgressFile = mkSqlPath ".in-progress" compressSuffix;
|
|
in
|
|
{
|
|
enable = true;
|
|
|
|
description = "Backup of ${db} database(s)";
|
|
|
|
requires = [ "postgresql.service" ];
|
|
|
|
path = [
|
|
pkgs.coreutils
|
|
config.services.postgresql.package
|
|
];
|
|
|
|
script = ''
|
|
set -e -o pipefail
|
|
|
|
umask 0077 # ensure backup is only readable by postgres user
|
|
|
|
if [ -e ${curFile} ]; then
|
|
rm -f ${toString prevFiles}
|
|
mv ${curFile} ${prevFile}
|
|
fi
|
|
|
|
${dumpCmd} \
|
|
| ${compressCmd} \
|
|
> ${inProgressFile}
|
|
|
|
mv ${inProgressFile} ${curFile}
|
|
'';
|
|
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
User = "postgres";
|
|
};
|
|
|
|
startAt = cfg.startAt;
|
|
};
|
|
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [ "services" "postgresqlBackup" "period" ] ''
|
|
A systemd timer is now used instead of cron.
|
|
The starting time can be configured via <literal>services.postgresqlBackup.startAt</literal>.
|
|
'')
|
|
];
|
|
|
|
options = {
|
|
services.postgresqlBackup = {
|
|
enable = lib.mkEnableOption "PostgreSQL dumps";
|
|
|
|
startAt = lib.mkOption {
|
|
default = "*-*-* 01:15:00";
|
|
type = with lib.types; either (listOf str) str;
|
|
description = ''
|
|
This option defines (see `systemd.time` for format) when the
|
|
databases should be dumped.
|
|
The default is to update at 01:15 (at night) every day.
|
|
'';
|
|
};
|
|
|
|
backupAll = lib.mkOption {
|
|
default = cfg.databases == [ ];
|
|
defaultText = lib.literalExpression "services.postgresqlBackup.databases == []";
|
|
type = lib.types.bool;
|
|
description = ''
|
|
Backup all databases using pg_dumpall.
|
|
This option is mutual exclusive to
|
|
`services.postgresqlBackup.databases`.
|
|
The resulting backup dump will have the name all.sql.gz.
|
|
This option is the default if no databases are specified.
|
|
'';
|
|
};
|
|
|
|
databases = lib.mkOption {
|
|
default = [ ];
|
|
type = lib.types.listOf lib.types.str;
|
|
description = ''
|
|
List of database names to dump.
|
|
'';
|
|
};
|
|
|
|
location = lib.mkOption {
|
|
default = "/var/backup/postgresql";
|
|
type = lib.types.path;
|
|
description = ''
|
|
Path of directory where the PostgreSQL database dumps will be placed.
|
|
'';
|
|
};
|
|
|
|
pgdumpOptions = lib.mkOption {
|
|
type = lib.types.separatedString " ";
|
|
default = "-C";
|
|
description = ''
|
|
Command line options for pg_dump or pg_dumpall.
|
|
'';
|
|
};
|
|
|
|
compression = lib.mkOption {
|
|
type = lib.types.enum [
|
|
"none"
|
|
"gzip"
|
|
"zstd"
|
|
];
|
|
default = "gzip";
|
|
description = ''
|
|
The type of compression to use on the generated database dump.
|
|
'';
|
|
};
|
|
|
|
compressionLevel = lib.mkOption {
|
|
type = lib.types.ints.between 1 19;
|
|
default = 6;
|
|
description = ''
|
|
The compression level used when compression is enabled.
|
|
gzip accepts levels 1 to 9. zstd accepts levels 1 to 19.
|
|
'';
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkMerge [
|
|
{
|
|
assertions = [
|
|
{
|
|
assertion = cfg.backupAll -> cfg.databases == [ ];
|
|
message = "config.services.postgresqlBackup.backupAll cannot be used together with config.services.postgresqlBackup.databases";
|
|
}
|
|
{
|
|
assertion =
|
|
cfg.compression == "none"
|
|
|| (cfg.compression == "gzip" && cfg.compressionLevel >= 1 && cfg.compressionLevel <= 9)
|
|
|| (cfg.compression == "zstd" && cfg.compressionLevel >= 1 && cfg.compressionLevel <= 19);
|
|
message = "config.services.postgresqlBackup.compressionLevel must be set between 1 and 9 for gzip and 1 and 19 for zstd";
|
|
}
|
|
];
|
|
}
|
|
(lib.mkIf cfg.enable {
|
|
systemd.tmpfiles.rules = [
|
|
"d '${cfg.location}' 0700 postgres - - -"
|
|
];
|
|
})
|
|
(lib.mkIf (cfg.enable && cfg.backupAll) {
|
|
systemd.services.postgresqlBackup = postgresqlBackupService "all" "pg_dumpall ${cfg.pgdumpOptions}";
|
|
})
|
|
(lib.mkIf (cfg.enable && !cfg.backupAll) {
|
|
systemd.services = lib.listToAttrs (
|
|
map (
|
|
db:
|
|
let
|
|
cmd = "pg_dump ${cfg.pgdumpOptions} ${db}";
|
|
in
|
|
{
|
|
name = "postgresqlBackup-${db}";
|
|
value = postgresqlBackupService db cmd;
|
|
}
|
|
) cfg.databases
|
|
);
|
|
})
|
|
];
|
|
|
|
meta.maintainers = with lib.maintainers; [ Scrumplex ];
|
|
}
|