0440703030
- PE: Demote from Master does not clear previous errors - crmd: Prevent secondary DC fencing resulting from CIB updates that are lost due to elections - crmd: Log duplicate DC detection as a WARNING not ERROR - crmd: Bug lf#2632 - Correctly handle nodes that return faster than stonith - Core: Treat GNUTLS_E_UNEXPECTED_PACKET_LENGTH as normal termination of a TLS session - cib: Call gnutls_bye() and shutdown() when disconnecting from remote TLS connections - cib: Remove disconnected remote connections from mainloop - cib: Attempt a graceful sign-off for remote TLS connections - Core: Ensure there is sufficient space for EOS when building short-form option strings (prevents segfault) - Core: Fix variable expansion in pkg-config files - PE: Resolve memory leak reported by valgrind - PE: Fix memory leak for re-allocated resources reported by valgrind - PE: Improve the merging with template's operations - crmd: Allow nodes to fence themselves if they're the last one standing (lf#2584) - stonith: Add an API call for listing installed agents - stonith: Allow the fencing history to be queried - stonith: Ensure completed operations are recorded as such in the history - stonith: Support --quiet to display just the seconds since epoch at which a node was last shot - stonith: Serialize actions for a given device - stonith: Add missing entries to stonith_error2string() (missing OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=18
21 lines
826 B
Diff
21 lines
826 B
Diff
# HG changeset patch
|
|
# User Dejan Muhamedagic <dejan@hello-penguin.com>
|
|
# Date 1312579593 -7200
|
|
# Node ID d0359dca5dba3fd6fee856d51cca5ee7ac752ee6
|
|
# Parent a7acb683b3568ca81d90472f770b0270270d5dfd
|
|
Low: Shell: relax host key checking in pssh
|
|
|
|
diff -r a7acb683b356 -r d0359dca5dba shell/modules/crm_pssh.py
|
|
--- a/shell/modules/crm_pssh.py Fri Aug 05 23:13:37 2011 +0200
|
|
+++ b/shell/modules/crm_pssh.py Fri Aug 05 23:26:33 2011 +0200
|
|
@@ -84,7 +84,8 @@ def do_pssh(l, opts):
|
|
hosts = []
|
|
for host, cmdline in l:
|
|
cmd = ['ssh', host, '-o', 'PasswordAuthentication=no',
|
|
- '-o', 'SendEnv=PSSH_NODENUM']
|
|
+ '-o', 'SendEnv=PSSH_NODENUM',
|
|
+ '-o', 'StrictHostKeyChecking=no']
|
|
if opts.options:
|
|
for opt in opts.options:
|
|
cmd += ['-o', opt]
|