--- fence-agents-4.0.5/fence/agents/lib/check_used_options.py.orig 2013-10-22 17:06:49.000000000 +0200 +++ fence-agents-4.0.5/fence/agents/lib/check_used_options.py 2013-11-01 09:35:22.583722951 +0100 @@ -22,6 +22,10 @@ ## add UUID which is derived automatically from --plug if possible available["--uuid"] = True + # --plugs is constructed from --plug + available["--plugs"] = True + # probably should be defined + available["--managed"] = True ## all_opt defined in fence agent are found agent_file = open(agent) @@ -48,12 +52,12 @@ for x in option_use_re.findall(line): if not available.has_key(x): - print "ERROR on line %d in %s: option %s is not defined" % (counter, agent, option_use_re.search(line).group(1)) + print "ERROR on line %d in %s: option %s is not defined" % (counter, agent, x) without_errors = False for x in option_has_re.findall(line): if not available.has_key(x): - print "ERROR on line %d in %s: option %s is not defined" % (counter, agent, option_has_re.search(line).group(1)) + print "ERROR on line %d in %s: option %s is not defined" % (counter, agent, x) without_errors = False if without_errors: