0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/postfixadmin: add set -o pipefail for postfixadmin-postgres script

This commit is contained in:
Kamillaova 2024-12-11 00:04:45 +03:00
parent 2de264f209
commit bab7f1e99e
No known key found for this signature in database
GPG key ID: 2D525F67791E5834

View file

@ -156,7 +156,7 @@ in
pkgs.util-linux
];
script = ''
set -eu
set -euo pipefail
PSQL() {
psql --port=${toString pgsql.port} "$@"