Egbert Eich
575b22fc24
- Updated to version 0.2.8: * Changed project homepage to <https://dun.github.io/conman/>. (#21) * Changed conman.conf default loopback setting to ON. * Changed rpm spec file from sysvinit to systemd. * Added 'server nofile' config directive to increase NOFILE limit. (#17) * Added '-P' cmdline opt to daemon for specifying pidfile. (#20) * Added test console device to aid in development and testing. * Fixed telnet option negotiation loop. (#9) * Fixed arbitrary limit on number of IPMI SOL consoles. (#15) * Fixed 4-character limit on timezones. (#16) * Fixed 1-second delay when connecting the client to a console. * Fixed UDS console reconnect delay to use exponential timeout. * Fixed UDS console reconnect delay to require min connect time before reset. * Fixed UDS console resource leak of pathname during config processing. * Fixed all gcc, clang, and Coverity Scan warnings. * Improved scalability of daemon. OBS-URL: https://build.opensuse.org/request/show/532245 OBS-URL: https://build.opensuse.org/package/show/network:cluster/conman?expand=0&rev=13
23 lines
539 B
Diff
23 lines
539 B
Diff
Index: conman-0.2.7/lib/exec/ssh.exp
|
|
===================================================================
|
|
--- conman-0.2.7.orig/lib/exec/ssh.exp
|
|
+++ conman-0.2.7/lib/exec/ssh.exp
|
|
@@ -166,7 +166,7 @@ expect {
|
|
}
|
|
exp_continue -continue_timer
|
|
}
|
|
- -re "^$user@.* password: \$" {
|
|
+ -re "^.assword: \$" {
|
|
if {$authenticated == 0} {
|
|
send "$pswd\r"
|
|
incr authenticated
|
|
@@ -176,7 +176,7 @@ expect {
|
|
exit 1
|
|
}
|
|
}
|
|
- -re "(:|#|%|\\\$) \$" {
|
|
+ -re "(:|#|%|>|\\\$) \$" {
|
|
;
|
|
}
|
|
-re "\[^\r]*\r+\n" {
|