diff options
Diffstat (limited to 'www-apps/roundup/files/roundup')
-rw-r--r-- | www-apps/roundup/files/roundup | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/www-apps/roundup/files/roundup b/www-apps/roundup/files/roundup index c1c997bea6e3..19f1ab6d2bfb 100644 --- a/www-apps/roundup/files/roundup +++ b/www-apps/roundup/files/roundup @@ -4,7 +4,7 @@ case "$1" in echo "Usage roundup {start|stop|help} options..." echo "start usage:" echo "" - echo "roundup start port host [tracker home]" + echo "roundup start port host tracker_name [tracker home]" echo "" echo "" echo "stop usage:" @@ -18,10 +18,12 @@ case "$1" in shift host=$1 shift + tracker_name=$1 + shift tracker_home="$@" roundup-server -d ${tracker_home}/roundup.pid \ -l ${tracker_home}/roundup.log \ - -p $port -n $host support=$tracker_home + -p $port -n $host ${tracker_name}=${tracker_home} ;; "stop") shift @@ -33,7 +35,7 @@ case "$1" in echo "Usage roundup {start|stop|help} options..." echo "start usage:" echo "" - echo "roundup start port host [tracker home] + echo "roundup start port host tracker_name [tracker home] echo "" echo "" echo "stop usage:" |