#!/bin/bash
set -ex

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

if test $# = 1 ; then
    exec distkv -c /etc/distkv.cfg client run -n - -g "$1" all
else
    exec distkv -c /etc/distkv.cfg client run -n - all
fi
