Heartbeat Resource Agent and example configuration files.

== Files ==
L7directord:	Resource Agent for l7directord.
L7vsd:		Resource Agent for l7vsd.
SSLProxy:	Resource Agent for sslproxy.
VIPcheck:	Resource Agent for VIP.
authkeys:	Heartbeat authkey example.
cib.xml-sample:	Heartbeat cib.xml example.
cib.xml-sample.ssl:
		Heartbeat cib.xml example using SSLProxy.
ha.cf:		Heartbeat ha.cf example.
logd.cf:	Heartbeat logd.cf example.

== Set up ==
See Heartbeat2 install manual for UltraMonkey-L7. (Japanese)
http://sourceforge.jp/projects/ultramonkey-l7/docs/?category_id=964

You can use Resource Agents as they are.  But you must edit at
least IP addresses in configuration files.

When you edit the init script "l7vsd" as follows, you must edit
the Resource Agent "L7vsd" and "L7directord" as described later.

  [init script "l7vsd"]
  -----------------------------------------------------------------
    <default>       L7VSD_OPTIONS="-b"    # run as blocking mode

    <after edit>    L7VSD_OPTIONS=""      # run as non-blocking mode
  -----------------------------------------------------------------

  [Resource Agent "L7directord"]
   at the function "l7vsd_flush()"
  -----------------------------------------------------------------
    <default>       PS=`pgrep -fox "/usr/sbin/l7vsd -b" | wc -l`

    <after edit>    PS=`pgrep -fox "/usr/sbin/l7vsd" | wc -l`
  -----------------------------------------------------------------

  [Resource Agent "L7vsd"]
   at the function "isRunning()"
  -----------------------------------------------------------------
    <default>       RET=`pgrep -fox "/usr/sbin/l7vsd -b" | wc -l`

    <after edit>    RET=`pgrep -fox "/usr/sbin/l7vsd" | wc -l`
  -----------------------------------------------------------------

