12 lines
126 B
Bash
12 lines
126 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=10
|
|
STOP=15
|
|
|
|
start() {
|
|
/opt/CronosAgent/cronosagent.sh 6
|
|
}
|
|
|
|
stop() {
|
|
killall cronosagent
|
|
}
|