Changeset 262 for tools

Show
Ignore:
Timestamp:
02/25/09 09:34:10 (19 months ago)
Author:
daniel
Message:

added list parameter to start script

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tools/routingservice/trunk/routingservice.sh

    r260 r262  
    9191                fi 
    9292        ;; 
     93 
     94 
     95        list) 
     96                # get current processes 
     97echo " 
     98Currently active WRS process(es): 
     99" 
     100 
     101ps afx | grep restlet 
     102 
     103echo " 
     104 
     105" 
     106        ;; 
    93107         
    94108        debug) 
     
    107121 
    108122Usage: 
    109         ./routingservice.sh {start|stop|restart|debug|help} [identifier] 
     123        ./routingservice.sh {start|stop|restart|debug|list|help} [identifier] 
    110124 
    111125Commands: 
     
    115129        debug           Run the service in debug mode 
    116130                        This will print log messages to the terminal window. 
     131        list            List currently active process(es) 
    117132        help            Show the startup help 
    118133