#!/bin/sh
exec 2>&1
# note: `mytracker` is just an example, change it to the installed
# tracker name
TRACKER="mytracker=/var/lib/roundup/trackers/mytracker"
# the server port
PORT=8088
# the user this server runs under; leave empty to run under root
USER=""
# remember to chown(1) the tracker files in /var/lib/roundup/trackers
# for a different user than root, see chpst(8) for more info
#USER="chpst -u roundup"
echo "starting roundup server"
exec $USER roundup-server -p $PORT $TRACKER
