From b7c0e6b66b3c95ec9d95194831a39053f8d4cef9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 20 Apr 2009 12:12:56 +0000 Subject: [PATCH] pdsh: Fix user option "pdsh { rsh = true/false; };". svn path=/nixpkgs/trunk/; revision=15172 --- pkgs/tools/networking/pdsh/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/pdsh/default.nix b/pkgs/tools/networking/pdsh/default.nix index 7e60e60bfa36..81327c84bf5b 100644 --- a/pkgs/tools/networking/pdsh/default.nix +++ b/pkgs/tools/networking/pdsh/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { + " " + (if readline == null then "--without-readline" else "--with-readline") + " " + (if ssh == null then "--without-ssh" else "--with-ssh") + " " + (if pam == null then "--without-pam" else "--with-pam") - + " " + (if rsh == null then "--without-rsh" else "--with-rsh") + + " " + (if rsh == false then "--without-rsh" else "--with-rsh") + " --with-dshgroups" + " --with-xcpu" + " --without-genders"