#!/bin/sh
case "$1" in
  (start) shift; exec kaboxer run --detach --prompt-before-exit --component default covenant -- "$@" ;;
  (stop)  shift; exec kaboxer stop --prompt-before-exit --component default covenant ;;
  (*)     echo >&2 "Usage: $(basename $0) start|stop"; exit 1 ;;
esac
