Re: [ClusterLabs] How to implement a fencing agent

2018-08-09 Thread Jan Pokorný
On 09/08/18 14:10 -0500, Ryan Thomas wrote: > I did some more investigation and was able to answer two of my questions: > > First, why did "pcs stonith list" not show my fence_foo agent? pcs runs the > meta-data action on the agent to get the description. Since my fence_foo > agent wasn't impleme

Re: [ClusterLabs] How to implement a fencing agent

2018-08-09 Thread Ryan Thomas
I did some more investigation and was able to answer two of my questions: First, why did "pcs stonith list" not show my fence_foo agent? pcs runs the meta-data action on the agent to get the description. Since my fence_foo agent wasn't implemented, this would fail, and pcs would not display it. I

Re: [ClusterLabs] How to implement a fencing agent

2018-08-09 Thread Ryan Thomas
Thanks for the advice and information. >> 1. The documentation encourages the use of the python fencing library. >>How does one install this?> Fencing library is basically this file (sans the doubled extension): > https://github.com/ClusterLabs/fence-agents/blob/v4.2.1/lib/fencing.py.py

Re: [ClusterLabs] How to implement a fencing agent

2018-08-09 Thread Jan Pokorný
On 09/08/18 07:59 +0200, Ulrich Windl wrote: Ryan Thomas schrieb am 08.08.2018 um 23:26 in > Nachricht > : >> I’m attempting to implement a fencing agent. >> >> The ClusterLabs/fence-agent github repo has some helpful information >> including fence-agents/doc/FenceAgentAPI.md, but I haven’t

[ClusterLabs] How to implement a fencing agent

2018-08-08 Thread Ryan Thomas
I’m attempting to implement a fencing agent. The ClusterLabs/fence-agent github repo has some helpful information including fence-agents/doc/FenceAgentAPI.md, but I haven’t found the answers to a few basic questions. 1. The documentation encourages the use of the python fencing library. How