@@ -962,6 +962,8 @@ get_client_name(int is_rsh, int is_rlogin, int inherit_job)
962
962
client_name = getenv (" SGE_RSH_COMMAND" );
963
963
if (client_name != nullptr && strlen (client_name) > 0 ) {
964
964
DPRINTF (" rsh client name: %s\n " , client_name);
965
+ VERBOSE_LOG ((stderr, MSG_QSH_RSH_CLIENT_FROM_ENVIRONMENT_S, client_name));
966
+ VERBOSE_LOG ((stderr, " \n " ))
965
967
if (strcasecmp (client_name, " builtin" ) == 0 ) {
966
968
g_new_interactive_job_support = true ;
967
969
}
@@ -1013,6 +1015,7 @@ get_client_name(int is_rsh, int is_rlogin, int inherit_job)
1013
1015
char default_buffer[SGE_PATH_MAX];
1014
1016
dstring default_dstring;
1015
1017
1018
+ // @todo 1262 there is no utilbin/arch/rsh any more
1016
1019
sge_dstring_init (&default_dstring, default_buffer, SGE_PATH_MAX);
1017
1020
sge_dstring_sprintf (&default_dstring, " %s/utilbin/%s/%s" ,
1018
1021
sge_root, sge_get_arch (),
@@ -1022,8 +1025,12 @@ get_client_name(int is_rsh, int is_rlogin, int inherit_job)
1022
1025
/* try to find telnet in PATH */
1023
1026
client_name = strdup (session_type);
1024
1027
}
1028
+ VERBOSE_LOG ((stderr, MSG_QSH_RSH_NO_CONFIG_USING_DEFAULT_SS, session_type, client_name));
1029
+ VERBOSE_LOG ((stderr, " \n " ))
1025
1030
} else {
1026
1031
client_name = strdup (client_name);
1032
+ VERBOSE_LOG ((stderr, MSG_QSH_RSH_CLIENT_FROM_QMASTER_SS, session_type, client_name));
1033
+ VERBOSE_LOG ((stderr, " \n " ))
1027
1034
}
1028
1035
1029
1036
if (strcasecmp (client_name, " builtin" ) == 0 ) {
0 commit comments