#!/bin/sh /etc/rc.common

START=10
STOP=15

start() {
  /opt/CronosAgent/cronosagent.sh 6
}

stop() {
  killall cronosagent
}

reload() {
  restart
}