#!/usr/bin/env bash

# Script to run Heartbeat in foreground with the same path settings that
# the init script / systemd unit file would do.

exec /usr/share/heartbeat/bin/heartbeat \
  -path.home /usr/share/heartbeat \
  -path.config /etc/heartbeat \
  -path.data /var/lib/heartbeat \
  -path.logs /var/log/heartbeat \
  "$@"
