mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-03 01:43:25 +00:00
Fix ccon and ctel not working correctly
Prevent ssh options being applied on non-ssh connections. Github issue #35
This commit is contained in:
parent
5fad534ef0
commit
153709b220
2 changed files with 15 additions and 9 deletions
1
Changes
1
Changes
|
@ -3,6 +3,7 @@
|
||||||
- Allow re-adding closed session (Github issue #27 - thanks to Andrew Stevenson)
|
- Allow re-adding closed session (Github issue #27 - thanks to Andrew Stevenson)
|
||||||
- Allow sorting windows in natural order (Github issue #28 - thanks to Andrew Stevenson)
|
- Allow sorting windows in natural order (Github issue #28 - thanks to Andrew Stevenson)
|
||||||
- Fix links in metadata files to trackers (Github issue #41)
|
- Fix links in metadata files to trackers (Github issue #41)
|
||||||
|
- Fix ctel and ccon not working correctly (Github issue #35)
|
||||||
|
|
||||||
4.03_06 2015-01-31 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
4.03_06 2015-01-31 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
||||||
- Remove references to 'logmsg' preventing the history window from working (thanks to Andrew Stevenson)
|
- Remove references to 'logmsg' preventing the history window from working (thanks to Andrew Stevenson)
|
||||||
|
|
|
@ -1975,16 +1975,19 @@ sub run {
|
||||||
# only use ssh_args from options if config file ssh_args not set AND
|
# only use ssh_args from options if config file ssh_args not set AND
|
||||||
# options is not the default value otherwise the default options
|
# options is not the default value otherwise the default options
|
||||||
# value is used instead of the config file
|
# value is used instead of the config file
|
||||||
if ( $self->config->{ssh_args} ) {
|
if ( $self->config->{comms} eq 'ssh' ) {
|
||||||
if ( $self->options->options
|
if ( $self->config->{ssh_args} ) {
|
||||||
&& $self->options->options ne $self->options->options_default )
|
if ( $self->options->options
|
||||||
{
|
&& $self->options->options ne
|
||||||
$self->config->{ssh_args} = $self->options->options;
|
$self->options->options_default )
|
||||||
|
{
|
||||||
|
$self->config->{ssh_args} = $self->options->options;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$self->config->{ssh_args} = $self->options->options
|
||||||
|
if ( $self->options->options );
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else {
|
|
||||||
$self->config->{ssh_args} = $self->options->options
|
|
||||||
if ( $self->options->options );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$self->config->{terminal_args} = $self->options->term_args
|
$self->config->{terminal_args} = $self->options->term_args
|
||||||
|
@ -2195,6 +2198,8 @@ the code until this time.
|
||||||
|
|
||||||
=item populate_send_menu_entries_from_xml
|
=item populate_send_menu_entries_from_xml
|
||||||
|
|
||||||
|
=item re_add_closed_sessions
|
||||||
|
|
||||||
=item remove_repeated_servers
|
=item remove_repeated_servers
|
||||||
|
|
||||||
=item resolve_names
|
=item resolve_names
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue