| 123456789101112131415161718192021222324252627282930313233343536373839 | #!/bin/bash /etc/rc.common#Created by oycol<[email protected]>EXTRA_COMMANDS="status"EXTRA_HELP="        status  	Check service is running"START=99LOG_FILE="/tmp/netclient.logs"start() {  if [ ! -f "${LOG_FILE}" ];then      touch "${LOG_FILE}"  fi  local PIDS=($(ps -e|grep "netclient checkin -n all"|grep -v grep|awk '{print $1}'))  if [ ${PIDS} ];then    echo "service is running"    return  fi  bash -c "while [ 1 ]; do /etc/netclient/netclient checkin -n all >> ${LOG_FILE} 2>&1;sleep 15;\           if [ $(ls -l ${LOG_FILE}|awk '{print $5}') -gt 10240000 ];then tar zcf "${LOG_FILE}.tar" -C / "tmp/netclient.logs"  && > ${LOG_FILE};fi;done &"  echo "start"}stop() {  local PIDS=($(ps -e|grep "netclient checkin -n all"|grep -v grep|awk '{print $1}'))  for i in "${PIDS[@]}"; do    kill $i  done  echo "stop"}status() {  local PIDS=($(ps -e|grep "netclient checkin -n all"|grep -v grep|awk '{print $1}'))  if [ ${PIDS} ];then    echo -e "netclient[${PIDS}] is running \n"  else    echo -e "netclient is not running \n"  fi}
 |