search for: no_pty

Displaying 2 results from an estimated 2 matches for "no_pty".

Did you mean: bo_ptr
2013 Jan 31
2
OpenSSH NoPty patch
...servconf.c 2012-07-31 02:22:38.000000000 +0000 +++ openssh-6.1p1-new/servconf.c 2013-01-31 17:12:36.000000000 +0000 @@ -85,6 +85,7 @@ initialize_server_options(ServerOptions options->x11_forwarding = -1; options->x11_display_offset = -1; options->x11_use_localhost = -1; + options->no_pty = -1; options->xauth_location = NULL; options->strict_modes = -1; options->tcp_keep_alive = -1; @@ -201,6 +202,8 @@ fill_default_server_options(ServerOption options->x11_use_localhost = 1; if (options->xauth_location == NULL) options->xauth_location = _PATH_XAUTH; +...
2000 Nov 29
1
Pseudo-tty allocation and -T option
...messages back from the cron system (or rather from ssh) about it not allocating a tty since there is no controlling terminal - obviously not since the job is run through cron: Pseudo-terminal will not be allocated because stdin is not a terminal. I have tried using the -T option and specifying no_pty in the key options on system B, but I still get the error message. The man page for ssh says: -T Disable pseudo-tty allocation (protocol version 2 only). We are only using protocol 2; openssh 2.3.0p1. So is '-T' not working correctly, am I doing something wrong or is openssh co...