0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

postgresql-backup: use system postgresql package

This commit is contained in:
Nikolay Amiantov 2015-05-13 15:03:01 +03:00
parent 92317259ef
commit e9679ce32a

View file

@ -9,7 +9,7 @@ let
postgresqlBackupCron = db: postgresqlBackupCron = db:
'' ''
${config.services.postgresqlBackup.period} root ${postgresql}/bin/pg_dump ${db} | ${gzip}/bin/gzip -c > ${location}/${db}.gz ${config.services.postgresqlBackup.period} root ${config.services.postgresql.package}/bin/pg_dump ${db} | ${gzip}/bin/gzip -c > ${location}/${db}.gz
''; '';
in in