#!/bin/bash
set -ex

# This script file starts up a DistKV any-node runner.

if test ! -v NAME ; then
    echo "NAME is not set. Exiting." >&2
    exit 1
fi

exec distkv -c /etc/distkv.cfg client run all
