aboutsummaryrefslogtreecommitdiff
path: root/modules/pkgs/check_aws_ec2_elb
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2017-09-19 16:59:00 +0300
committerIgor Pashev <pashev.igor@gmail.com>2017-09-19 16:59:00 +0300
commit48322807bcba8f7934a0682f21226436da9b46b8 (patch)
tree924435c53283189f5badb4c6994b7cde24597dba /modules/pkgs/check_aws_ec2_elb
parentfbf880e395343acddcedd27459fd30be5c9a0d91 (diff)
downloadnixsap-48322807bcba8f7934a0682f21226436da9b46b8.tar.gz
Update check_aws_rds & check_aws_ec2_elb
* `dig` now lives in bind.dnsutils (See https://github.com/NixOS/nixpkgs/commit/fa405aa26425e3632032d732edc0b85c8a23a074) * Use wrappers instead of in-place substitution (dangerous). * Update pmp-check-aws-rds.py: ignore UNKNOWN status by default (See https://github.com/percona/percona-monitoring-plugins/commit/7f4a9852a0e470698d90afc0036d2738a4906477)
Diffstat (limited to 'modules/pkgs/check_aws_ec2_elb')
-rw-r--r--modules/pkgs/check_aws_ec2_elb/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pkgs/check_aws_ec2_elb/default.nix b/modules/pkgs/check_aws_ec2_elb/default.nix
index 5162c9d..9e785cf 100644
--- a/modules/pkgs/check_aws_ec2_elb/default.nix
+++ b/modules/pkgs/check_aws_ec2_elb/default.nix
@@ -17,6 +17,6 @@ stdenv.mkDerivation {
--replace check_aws_ec2_elb "$out/bin/check_aws_ec2_elb"
wrapProgram "$out/bin/check_aws_ec2_elb" \
- --prefix PATH : "${pkgs.awscli}/bin:${pkgs.gnused}/bin:${pkgs.jq}/bin:${pkgs.bind}/bin"
+ --prefix PATH : "${pkgs.awscli}/bin:${pkgs.gnused}/bin:${pkgs.jq}/bin:${pkgs.bind.dnsutils}/bin"
'';
}