#!/bin/sh
exec 2>&1
# Note that `mytracker` and 'my2nd' are just examples. Change them to
# the installed tracker name(s). See roundup-server(1) for more info
TRACKER1="mytracker=/var/lib/roundup/trackers/mytracker"
TRACKER2="my2nd=/var/lib/roundup/trackers/my2nd"
# the server port
PORT="8088"
# the command to change the process to a user this server runs under;
# leave empty to run under root.
# 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"
USER=""
echo "starting roundup server"
exec $USER roundup-server -p $PORT $TRACKER1 $TRACKER2
