summary refs log tree commit diff
path: root/pkgs/tools/networking/pdsh
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-04-20 12:12:56 +0000
committerPeter Simons <simons@cryp.to>2009-04-20 12:12:56 +0000
commitb7c0e6b66b3c95ec9d95194831a39053f8d4cef9 (patch)
tree4282dc3435eb0552b919cf9973caa83687fb6093 /pkgs/tools/networking/pdsh
parentac24816344ba729b421aeaecc0de961ba8043e92 (diff)
downloadnixpkgs-b7c0e6b66b3c95ec9d95194831a39053f8d4cef9.tar
nixpkgs-b7c0e6b66b3c95ec9d95194831a39053f8d4cef9.tar.gz
nixpkgs-b7c0e6b66b3c95ec9d95194831a39053f8d4cef9.tar.bz2
nixpkgs-b7c0e6b66b3c95ec9d95194831a39053f8d4cef9.tar.lz
nixpkgs-b7c0e6b66b3c95ec9d95194831a39053f8d4cef9.tar.xz
nixpkgs-b7c0e6b66b3c95ec9d95194831a39053f8d4cef9.tar.zst
nixpkgs-b7c0e6b66b3c95ec9d95194831a39053f8d4cef9.zip
pdsh: Fix user option "pdsh { rsh = true/false; };".
svn path=/nixpkgs/trunk/; revision=15172
Diffstat (limited to 'pkgs/tools/networking/pdsh')
-rw-r--r--pkgs/tools/networking/pdsh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/pdsh/default.nix b/pkgs/tools/networking/pdsh/default.nix
index 7e60e60bfa3..81327c84bf5 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"