#!/bin/sh
#
#       This script contains some variables for linux-ha which
#       are set at configure time.
#
#       Created to alow this information to be passed to
#       debian postinst scripts. Might be useful for other
#       stuff too.
#

# /var/lib directory
HA_VARLIBDIR="/var/lib" 

# directory to drop core files into
HA_COREDIR="/var/lib/heartbeat/cores" 

# Group to own API fifos
HA_APIGROUP="haclient" 

# GID to own API fifos
HA_APIGID="104" 

# User to own CCM fifos
HA_CCMUSER="hacluster" 

# UID to own CCM fifos
HA_CCMUID="1001" 

# Init start priority
HB_INITSTARTPRI="75" 

# Init stop priority
HB_INITSTOPPRI="05" 

# heartbeat rc script directory
HB_RC_DIR="/etc/ha.d/rc.d" 

# Version number of package
VERSION="1.2.3.cvs.20050927"

