4
Fork 0

Added init.d script for OpenWRT

This commit is contained in:
R3ABM Artem 2016-08-02 08:30:38 +03:00
parent 4a79416649
commit 3008556106
5 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#!/bin/sh /etc/rc.common
START=10
STOP=15
start() {
echo start
# commands to launch application
}
stop() {
echo stop
# commands to kill application
}