~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerheadd

  • Committer: Marius Kruger
  • Date: 2008-11-08 22:36:58 UTC
  • mto: This revision was merged to the branch mainline in revision 240.
  • Revision ID: amanic@gmail.com-20081108223658-arwmwu7169dr1m20
* Change init info tabs->spaces
* some refactoring
* make paths more suitable to installed version
* starting/stopping will give better info

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
### BEGIN INIT INFO
3
 
# Required-Start:               $local_fs $remote_fs $network
4
 
# Default-Start:                3 5
5
 
# Default-Stop:                 0 1 2 6
6
 
# Short-Description:            Loggerhead
7
 
# Description:                  Manage Loggerhead (a web viewer for projects in bazaar)
 
3
# Required-Start:       $local_fs $remote_fs $network
 
4
# Default-Start:        3 5
 
5
# Default-Stop:         0 1 2 6
 
6
# Short-Description:    Loggerhead
 
7
# Description:          Manage Loggerhead (a web viewer for projects in bazaar)
8
8
### END INIT INFO
9
9
 
10
 
# Configure this please: #
11
 
LOGGERHEAD_PATH=/opt/loggerhead
 
10
 
 
11
#
 
12
# Configure this please:
 
13
# (Please stop loggerhead before changing the configuration, otherwise this
 
14
#   script might not be able to kill loggerhead)
 
15
#
 
16
 
 
17
# If serve-branches is not in your path, you will need to specify the full path:
 
18
SERVE_BRANCHES_CMD=serve-branches
 
19
 
12
20
LOG_FOLDER=/var/log/loggerhead
13
21
LOG_FILE=$LOG_FOLDER/loggerheadd.log
14
 
PREFIX=/loggerhead
 
22
URL_PREFIX=/loggerhead
15
23
PORT=8080
16
24
 
 
25
#please specify the base directory to serve:
 
26
BZRROOT=/bzrroot
 
27
 
17
28
# You can add additional options to serve-branches here:
18
 
START_CMD="$LOGGERHEAD_PATH/serve-branches --prefix=$PREFIX --log-folder=$LOG_FOLDER --port=$PORT /var/lib/gforge/bzrroot/"
 
29
START_CMD="$SERVE_BRANCHES_CMD --prefix=$URL_PREFIX --log-folder=$LOG_FOLDER --port=$PORT $BZRROOT"
 
30
 
19
31
 
20
32
#
21
33
# main part
22
34
#
23
35
 
 
36
loggerhead_process(){
 
37
    pgrep -fl "$START_CMD"
 
38
}
 
39
 
 
40
loggerhead_status(){
 
41
    proccess=`loggerhead_process`
 
42
    #echo "$proccess"
 
43
    listening=`netstat -nl |grep -e ":$PORT "`
 
44
    #echo "$listening"
 
45
    if [ -z "$proccess" ]; then
 
46
        echo "Loggerhead is *not* running."
 
47
    else
 
48
        echo "Loggerhead is running."
 
49
        if [ -z "$listening" ]; then
 
50
            echo "This server is *not* listening on port $PORT."
 
51
        else
 
52
            echo "This server is listening on port $PORT."
 
53
        fi
 
54
    fi
 
55
}
 
56
 
24
57
start_loggerhead(){
 
58
    echo "Starting loggerhead.   (See $LOG_FOLDER for details.)"
 
59
 
 
60
    # make sure the log folder is created
 
61
    mkdir -p $LOG_FOLDER
 
62
    echo "" > $LOG_FILE
25
63
    python $START_CMD > $LOG_FILE 2>&1 &
26
 
    echo "Started loggerhead.   (See $LOG_FOLDER for details.)"
 
64
 
 
65
    #wait a little while of some logging to appear
 
66
    log=""
 
67
    for i in $(seq 1 3 30); do
 
68
        log=`cat $LOG_FILE`
 
69
        if [ -n "$log" ]; then
 
70
            break
 
71
        fi
 
72
        sleep 0.3
 
73
    done
 
74
    tail $LOG_FILE
 
75
    loggerhead_status
27
76
}
28
77
 
29
78
stop_loggerhead(){
 
79
    echo "Stopping loggerhead."
30
80
    pkill -f "$START_CMD"
31
 
    proccess=`pgrep -fl "$START_CMD"`
32
 
    if [ -z "$proccess" ]; then
33
 
        echo "Loggerhead was stopped."
34
 
    fi
 
81
    loggerhead_status
35
82
}
36
83
 
37
84
case "$1" in
42
89
        stop_loggerhead
43
90
    ;;
44
91
    status)
45
 
        proccess=`pgrep -fl "$START_CMD"`
46
 
        echo "$proccess"
47
 
        netstat -anp |grep -e ":$PORT"
48
 
        if [ -z "$proccess" ]; then
49
 
            echo "Loggerhead is not running."
50
 
        else
51
 
            echo "Loggerhead is running."
52
 
        fi
 
92
        loggerhead_status
53
93
    ;;
54
94
    restart)
55
95
        stop_loggerhead