Edgewall Software

Changes between Version 1 and Version 2 of Bitten Slave Daemon Ubuntu


Ignore:
Timestamp:
Oct 19, 2009, 5:51:01 PM (15 years ago)
Author:
anonymous
Comment:

deleted unimportant data

Legend:

Unmodified
Added
Removed
Modified
  • Bitten Slave Daemon Ubuntu

    v1 v2  
    1616NAME="bitten-slave"
    1717DAEMON_CMD="/usr/bin/bitten-slave"
    18 DAEMON_ARG="http://localhost/staff/trac/sistema/builds -i 15 -umarcos -pmpbe897"
     18DAEMON_ARG="http://localhost/trac/builds -i 15
    1919
    2020test -x $DAEMON_CMD || exit 0
     
    2424case "$1" in
    2525  start)
    26     echo -n "Arrancando bitten-slave"
     26    echo -n "Running bitten-slave"
    2727    start-stop-daemon --start -m --quiet --background --pidfile /var/run/bitten-slave.pid --exec $DAEMON_CMD -- $DAEMON_ARG
    2828    ;;
    2929  stop)
    30     echo -n "Parando bitten-slave"
     30    echo -n "Stopping bitten-slave"
    3131    start-stop-daemon --stop --quiet --pidfile /var/run/bitten-slave.pid --oknodo
    3232    ;;
    3333  *)   
    3434    N=/etc/init.d/$NAME
    35     echo "Uso: $N {start|stop}" >&2
     35    echo "Usage: $N {start|stop}" >&2
    3636    exit 1   
    3737    ;;