16 lines
No EOL
149 B
Bash
16 lines
No EOL
149 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=40
|
|
STOP=15
|
|
|
|
start() {
|
|
/opt/CronosAgent/cronosagent.sh 6
|
|
}
|
|
|
|
stop() {
|
|
killall cronosagent
|
|
}
|
|
|
|
reload() {
|
|
restart
|
|
} |