Gitweb: http://git.fedorahosted.org/git/?p=cluster.git;a=commitdiff;h=fd45ce1d4eda4…
Commit: fd45ce1d4eda42b85a2e2bfae76f29f2e86285cf
Parent: 0000000000000000000000000000000000000000
Author: digimer <digimer(a)alteeve.ca>
AuthorDate: 2012-11-27 03:10 +0000
Committer: digimer <digimer(a)alteeve.ca>
CommitterDate: 2012-11-27 03:10 +0000
annotated tag: cluster-3.2.0 has been created
at fd45ce1d4eda42b85a2e2bfae76f29f2e86285cf (tag)
tagging 804b8fe92e31b076b9989affaefaf4e739a5e342 (commit)
replaces cluster-3.1.93
cluster-3.2.0 release
Bob Peterson (1):
fenced: fix ignore_nolock for mounted nolock fs
Christine Caulfield (1):
fenced: fix potential tight loop reading /dev/zero
David Teigland (3):
fence_node/libfence: status
fenced: fence_check delay
fenced: silence dbus error
Fabio M. Di Nitto (8):
fence_check: add script and man page
cman init: allow dlm tcp port to be configurable via cman init script
cman init: increase default shutdown timeouts
cman init: make sure we start after fence_sanlockd and warn users
checkquorum.wdmd: add integration script with wdmd
libccs: don't use uninitialized value in xpathlite
cman init: fix error when /sys/kernel/config is still in use
cman init: deal with another systemd subtle change
Jan Pokorný (3):
cluster.rng: fix trailing whitespaces in head
cluster.rng: fencedevice initial non-digit note to description
cluster.rng: retab the head (use space uniformly)
Lon Hohberger (10):
rgmanager: Remove dead code
rgmanager: Remove unused assignment
rgmanager: Fix dead code warnings
rgmanager: Fix unsigned comparison warnings
rgmanager: Fix potential double-free
rgmanager: Fix possible dereference of NULL
Fix improper cleanup of join-view list
rgmanager: Add dead code to shut up static analyzer
rgmanager: Fix potential use-after-free
rgmanager: Fix memory leaks reported by static analyzer
Ryan McCabe (4):
rgmanager: Fix for deadlock
Revert "rgmanager: Fix for services stuck in recovery"
rgmanager: Fix return code when a service would deadlock
rgmanager: Randomize node list when relocating with no target
Gitweb: http://git.fedorahosted.org/git/?p=fence-agents.git;a=commitdiff;h=9e797a89…
Commit: 9e797a89be42e637958ec750e6776441c9557175
Parent: 0e7521cba9e9cd4e194153068013ccf01e484c9a
Author: Marek 'marx' Grac <mgrac(a)redhat.com>
AuthorDate: Fri Nov 23 15:38:53 2012 +0100
Committer: Marek 'marx' Grac <mgrac(a)redhat.com>
CommitterDate: Sun Nov 25 13:15:25 2012 +0100
fencing: Do not check IP address if fence agent does not need any.
---
fence/agents/lib/fencing.py.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/fence/agents/lib/fencing.py.py b/fence/agents/lib/fencing.py.py
index a334be7..6a5fd0b 100644
--- a/fence/agents/lib/fencing.py.py
+++ b/fence/agents/lib/fencing.py.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
-import sys, getopt, time, os, uuid
+import sys, getopt, time, os, uuid, pycurl
import pexpect, re, atexit
import __main__
@@ -702,7 +702,7 @@ def check_input(device_opt, opt):
if (0 == options.has_key("--username")) and device_opt.count("login") and (device_opt.count("no_login") == 0):
fail_usage("Failed: You have to set login name")
- if 0 == options.has_key("--ip") and 0 == options.has_key("--managed"):
+ if device_opt.count("ipaddr") and 0 == options.has_key("--ip") and 0 == options.has_key("--managed"):
fail_usage("Failed: You have to enter fence address")
if (device_opt.count("no_password") == 0):