14 lines
223 B
Bash
14 lines
223 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=10
|
|
STOP=15
|
|
|
|
start() {
|
|
echo start
|
|
# commands to launch application
|
|
}
|
|
|
|
stop() {
|
|
echo stop
|
|
# commands to kill application
|
|
}
|