Skip to content
This repository has been archived by the owner on Nov 8, 2019. It is now read-only.

Commit

Permalink
Fix capitalization of words
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Gate committed Oct 12, 2011
1 parent 139abe6 commit 49a3510
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bin/tscmd.sh
Expand Up @@ -6,19 +6,19 @@ PORT=1337

case "$1" in
start)
echo "start tracking"
echo "Start tracking"
curl -X POST -F "cmd=start" localhost:$PORT/index.text
;;
stop)
echo "stop tracking"
echo "Stop tracking"
curl -X POST -F "cmd=stop" -F "comment=$2" localhost:$PORT/index.text
;;
status)
echo "check status"
echo "Check status"
curl -X GET localhost:$PORT/index.text
;;
startd)
echo "starting daemon"
echo "Starting daemon"
ruby app.rb &> $(dirname $0)/../data/production.log &
echo $! > $PIDFILE
;;
Expand All @@ -28,11 +28,11 @@ case "$1" in
kill `cat $PIDFILE`
rm $PIDFILE
else
echo "did not find a pid file, unable to stop daemon"
echo "Did not find a PID file, unable to stop daemon"
fi
;;
restartd)
echo "restarting daemon"
echo "Restarting daemon"
$0 stopd
$0 startd
;;
Expand Down

0 comments on commit 49a3510

Please sign in to comment.