mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
nixos/postgresqlBackup: replace deprecated usage of PermissionsStartOnly
see https://github.com/NixOS/nixpkgs/issues/53852
This commit is contained in:
parent
64fdacc580
commit
7b2be9b328
|
@ -14,11 +14,6 @@ let
|
||||||
|
|
||||||
requires = [ "postgresql.service" ];
|
requires = [ "postgresql.service" ];
|
||||||
|
|
||||||
preStart = ''
|
|
||||||
mkdir -m 0700 -p ${cfg.location}
|
|
||||||
chown postgres ${cfg.location}
|
|
||||||
'';
|
|
||||||
|
|
||||||
script = ''
|
script = ''
|
||||||
umask 0077 # ensure backup is only readable by postgres user
|
umask 0077 # ensure backup is only readable by postgres user
|
||||||
|
|
||||||
|
@ -32,7 +27,6 @@ let
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
PermissionsStartOnly = "true";
|
|
||||||
User = "postgres";
|
User = "postgres";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -107,6 +101,11 @@ in {
|
||||||
message = "config.services.postgresqlBackup.backupAll cannot be used together with config.services.postgresqlBackup.databases";
|
message = "config.services.postgresqlBackup.backupAll cannot be used together with config.services.postgresqlBackup.databases";
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
(mkIf cfg.enable {
|
||||||
|
systemd.tmpfiles.rules = [
|
||||||
|
"d '${cfg.location}' 0700 postgres - - -"
|
||||||
|
];
|
||||||
|
})
|
||||||
(mkIf (cfg.enable && cfg.backupAll) {
|
(mkIf (cfg.enable && cfg.backupAll) {
|
||||||
systemd.services.postgresqlBackup =
|
systemd.services.postgresqlBackup =
|
||||||
postgresqlBackupService "all" "${config.services.postgresql.package}/bin/pg_dumpall";
|
postgresqlBackupService "all" "${config.services.postgresql.package}/bin/pg_dumpall";
|
||||||
|
|
Loading…
Reference in a new issue