diff options
author | Peter Simons | 2009-04-20 12:12:56 +0000 |
---|---|---|
committer | Peter Simons | 2009-04-20 12:12:56 +0000 |
commit | b7c0e6b66b3c95ec9d95194831a39053f8d4cef9 (patch) | |
tree | 4282dc3435eb0552b919cf9973caa83687fb6093 | |
parent | ac24816344ba729b421aeaecc0de961ba8043e92 (diff) |
pdsh: Fix user option "pdsh { rsh = true/false; };".
svn path=/nixpkgs/trunk/; revision=15172
-rw-r--r-- | pkgs/tools/networking/pdsh/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
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" |