From: Tommi Virtanen Date: Tue, 10 Jul 2012 23:11:33 +0000 (-0700) Subject: doc: No ssh -t -t, forcing a pty allocation there makes it hang. X-Git-Tag: v0.50~93 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=38e2de3d20c1fb68a87cd8a91f5e1248218df311;p=ceph.git doc: No ssh -t -t, forcing a pty allocation there makes it hang. Earlier, this was a single -t, and that is overridden by the fact that stdin is not a tty, so that did nothing. Signed-off-by: Tommi Virtanen --- diff --git a/doc/install/chef.rst b/doc/install/chef.rst index 8a505e14c10d..6b137feb9760 100644 --- a/doc/install/chef.rst +++ b/doc/install/chef.rst @@ -231,7 +231,7 @@ each Chef Node. In a command line shell on the Chef Server, for each node, replace ``{nodename}`` in the following line with the node's host name and execute it. :: - sudo cat /etc/chef/validation.pem | ssh -t -t {nodename} "exec sudo tee /etc/chef/validation.pem >/dev/null" + sudo cat /etc/chef/validation.pem | ssh {nodename} "exec sudo tee /etc/chef/validation.pem >/dev/null" Run ``chef-client`` on each Chef Node -------------------------------------