* [Cluster-devel] joining the gitfence-agents group
[not found] ` <5329ABBE.70304@redhat.com>
@ 2014-03-19 21:26 ` David Smith
2014-03-21 10:50 ` Marek Grac
0 siblings, 1 reply; 6+ messages in thread
From: David Smith @ 2014-03-19 21:26 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi marek, sure, no problem, here's the changes; also sent to cluster-devel.
I've already tested by manually running the fence-raritan agent that this
is working and functional
attached tgz for the raritan files (fence-agents/fence/agents/raritan/)
index eaef1d8..c24198c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -283,6 +283,7 @@ AC_CONFIG_FILES([Makefile
fence/agents/netio/Makefile
fence/agents/rackswitch/Makefile
fence/agents/ovh/Makefile
+ fence/agents/raritan/Makefile
fence/agents/rhevm/Makefile
fence/agents/rsa/Makefile
fence/agents/rsb/Makefile
On Wed, Mar 19, 2014 at 7:37 AM, Marek Grac <mgrac@redhat.com> wrote:
> On 03/18/2014 12:20 AM, David Smith wrote:
>
>> any chance you can sponsor and approve so i can submit the code via git?
>>
>> or, if you prefer, I can send you the code modifications.
>>
>> Hi,
>
> sorry for late response,
>
> The write access to git repository is still limited to very small group of
> people and I will be happy to add you there after you become regular
> contributor. Currently, please send a patch to cluster-devel at redhat.comwhere code review will be done. After that review, we will add your code
> into upstream using git-am so you will be preserved as author.
>
> m,
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/cluster-devel/attachments/20140319/9d2e3cc2/attachment.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: raritan.tgz
Type: application/x-gzip
Size: 1951 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/cluster-devel/attachments/20140319/9d2e3cc2/attachment.bin>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Cluster-devel] joining the gitfence-agents group
2014-03-19 21:26 ` [Cluster-devel] joining the gitfence-agents group David Smith
@ 2014-03-21 10:50 ` Marek Grac
2014-03-21 14:29 ` David Smith
2014-03-25 21:56 ` David Smith
0 siblings, 2 replies; 6+ messages in thread
From: Marek Grac @ 2014-03-21 10:50 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi,
On 03/19/2014 10:26 PM, David Smith wrote:
> Hi marek, sure, no problem, here's the changes; also sent to
> cluster-devel.
thanks, for next time it will be easier to you and other reviewers if
you will sent a patch in a standard format. Take a look at
http://alblue.bandlem.com/2011/12/git-tip-of-week-patches-by-email.html
> I've already tested by manually running the fence-raritan agent that
> this is working and functional
>
code looks pretty good and after few minor changes it can be accepted.
These are my comments:
* please remove commented line of source code
* exception checking 'Due to limitations ...' is not required any
more because we have subpackage for every fence-agent so dependencies
can be solved properly
* default value can be now set more easier (--ipport in this case)
all_opt["ipport"]["default"] = "23"
* please add support also for delay before login which is very
useful for 2-node clusters
if options["--action"] in ["off", "reboot"]:
time.sleep(int(options["--delay"]))
m,
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] joining the gitfence-agents group
2014-03-21 10:50 ` Marek Grac
@ 2014-03-21 14:29 ` David Smith
2014-03-25 21:56 ` David Smith
1 sibling, 0 replies; 6+ messages in thread
From: David Smith @ 2014-03-21 14:29 UTC (permalink / raw)
To: cluster-devel.redhat.com
thanks, i was doing some thinking the other night, given the goal is for
this agent to work with oVirt, i'm not sure that all the oVirt required
commands are supported in the agent code for this to work.
Also there's a comment about the port being required as a large path, this
is very unlikely to work with oVirt, I need to consult that group to find
out and perhaps submit a newer version.
On Fri, Mar 21, 2014 at 10:50 AM, Marek Grac <mgrac@redhat.com> wrote:
> Hi,
>
>
> On 03/19/2014 10:26 PM, David Smith wrote:
>
>> Hi marek, sure, no problem, here's the changes; also sent to
>> cluster-devel.
>>
>
> thanks, for next time it will be easier to you and other reviewers if you
> will sent a patch in a standard format. Take a look at
> http://alblue.bandlem.com/2011/12/git-tip-of-week-patches-by-email.html
>
>
> I've already tested by manually running the fence-raritan agent that this
>> is working and functional
>>
>> code looks pretty good and after few minor changes it can be accepted.
>
> These are my comments:
> * please remove commented line of source code
> * exception checking 'Due to limitations ...' is not required any more
> because we have subpackage for every fence-agent so dependencies can be
> solved properly
> * default value can be now set more easier (--ipport in this case)
> all_opt["ipport"]["default"] = "23"
> * please add support also for delay before login which is very useful
> for 2-node clusters
> if options["--action"] in ["off", "reboot"]:
> time.sleep(int(options["--delay"]))
>
> m,
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/cluster-devel/attachments/20140321/d06cf7f5/attachment.htm>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] joining the gitfence-agents group
2014-03-21 10:50 ` Marek Grac
2014-03-21 14:29 ` David Smith
@ 2014-03-25 21:56 ` David Smith
2014-04-02 1:31 ` David Smith
2014-04-02 13:12 ` Marek Grac
1 sibling, 2 replies; 6+ messages in thread
From: David Smith @ 2014-03-25 21:56 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi Marek,
Made the suggestions you've requested and did a quick test, all seems to
work.
attached is the new file
On Fri, Mar 21, 2014 at 3:50 AM, Marek Grac <mgrac@redhat.com> wrote:
> Hi,
>
>
> On 03/19/2014 10:26 PM, David Smith wrote:
>
>> Hi marek, sure, no problem, here's the changes; also sent to
>> cluster-devel.
>>
>
> thanks, for next time it will be easier to you and other reviewers if you
> will sent a patch in a standard format. Take a look at
> http://alblue.bandlem.com/2011/12/git-tip-of-week-patches-by-email.html
>
>
> I've already tested by manually running the fence-raritan agent that this
>> is working and functional
>>
>> code looks pretty good and after few minor changes it can be accepted.
>
> These are my comments:
> * please remove commented line of source code
> * exception checking 'Due to limitations ...' is not required any more
> because we have subpackage for every fence-agent so dependencies can be
> solved properly
> * default value can be now set more easier (--ipport in this case)
> all_opt["ipport"]["default"] = "23"
> * please add support also for delay before login which is very useful
> for 2-node clusters
> if options["--action"] in ["off", "reboot"]:
> time.sleep(int(options["--delay"]))
>
> m,
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/cluster-devel/attachments/20140325/0a8dd293/attachment.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: raritan.tgz
Type: application/x-gzip
Size: 1645 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/cluster-devel/attachments/20140325/0a8dd293/attachment.bin>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] joining the gitfence-agents group
2014-03-25 21:56 ` David Smith
@ 2014-04-02 1:31 ` David Smith
2014-04-02 13:12 ` Marek Grac
1 sibling, 0 replies; 6+ messages in thread
From: David Smith @ 2014-04-02 1:31 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi Marek,
Have you had a chance to review the changes? I'd love to see this get put
into fence-agents for support in oVirt 3.x
On Tue, Mar 25, 2014 at 2:56 PM, David Smith <dsmith@mypchelp.com> wrote:
> Hi Marek,
>
> Made the suggestions you've requested and did a quick test, all seems to
> work.
> attached is the new file
>
>
> On Fri, Mar 21, 2014 at 3:50 AM, Marek Grac <mgrac@redhat.com> wrote:
>
>> Hi,
>>
>>
>> On 03/19/2014 10:26 PM, David Smith wrote:
>>
>>> Hi marek, sure, no problem, here's the changes; also sent to
>>> cluster-devel.
>>>
>>
>> thanks, for next time it will be easier to you and other reviewers if you
>> will sent a patch in a standard format. Take a look at
>> http://alblue.bandlem.com/2011/12/git-tip-of-week-patches-by-email.html
>>
>>
>> I've already tested by manually running the fence-raritan agent that
>>> this is working and functional
>>>
>>> code looks pretty good and after few minor changes it can be accepted.
>>
>> These are my comments:
>> * please remove commented line of source code
>> * exception checking 'Due to limitations ...' is not required any
>> more because we have subpackage for every fence-agent so dependencies can
>> be solved properly
>> * default value can be now set more easier (--ipport in this case)
>> all_opt["ipport"]["default"] = "23"
>> * please add support also for delay before login which is very useful
>> for 2-node clusters
>> if options["--action"] in ["off", "reboot"]:
>> time.sleep(int(options["--delay"]))
>>
>> m,
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/cluster-devel/attachments/20140401/b0aedd45/attachment.htm>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] joining the gitfence-agents group
2014-03-25 21:56 ` David Smith
2014-04-02 1:31 ` David Smith
@ 2014-04-02 13:12 ` Marek Grac
1 sibling, 0 replies; 6+ messages in thread
From: Marek Grac @ 2014-04-02 13:12 UTC (permalink / raw)
To: cluster-devel.redhat.com
On 03/25/2014 10:56 PM, David Smith wrote:
> Hi Marek,
>
> Made the suggestions you've requested and did a quick test, all seems
> to work.
> attached is the new file
>
Thanks, fence agent is now in upstream, fedora release will follow soon
m,
>
> On Fri, Mar 21, 2014 at 3:50 AM, Marek Grac <mgrac@redhat.com
> <mailto:mgrac@redhat.com>> wrote:
>
> Hi,
>
>
> On 03/19/2014 10:26 PM, David Smith wrote:
>
> Hi marek, sure, no problem, here's the changes; also sent to
> cluster-devel.
>
>
> thanks, for next time it will be easier to you and other reviewers
> if you will sent a patch in a standard format. Take a look at
> http://alblue.bandlem.com/2011/12/git-tip-of-week-patches-by-email.html
>
>
>
> I've already tested by manually running the fence-raritan
> agent that this is working and functional
>
> code looks pretty good and after few minor changes it can be accepted.
>
> These are my comments:
> * please remove commented line of source code
> * exception checking 'Due to limitations ...' is not required
> any more because we have subpackage for every fence-agent so
> dependencies can be solved properly
> * default value can be now set more easier (--ipport in this case)
> all_opt["ipport"]["default"] = "23"
> * please add support also for delay before login which is very
> useful for 2-node clusters
> if options["--action"] in ["off", "reboot"]:
> time.sleep(int(options["--delay"]))
>
> m,
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/cluster-devel/attachments/20140402/444e829b/attachment.htm>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-04-02 13:12 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CAMKtzE9pjic-cXah9_wKbEhxVmcQj+K4fH88voSdfKP4dPjLfw@mail.gmail.com>
[not found] ` <5329ABBE.70304@redhat.com>
2014-03-19 21:26 ` [Cluster-devel] joining the gitfence-agents group David Smith
2014-03-21 10:50 ` Marek Grac
2014-03-21 14:29 ` David Smith
2014-03-25 21:56 ` David Smith
2014-04-02 1:31 ` David Smith
2014-04-02 13:12 ` Marek Grac
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).