#!/bin/sh /etc/rc.common
 
START=99
STOP=1
 
start() {        
/1tm/tm_cpps/tm_server start
}                 
 
stop() {          
/1tm/tm_cpps/tm_server stop
}

restart()
{
  stop
  start
}
