14 lines
177 B
Bash
14 lines
177 B
Bash
|
#!/sbin/openrc-run
|
||
|
|
||
|
command="/usr/bin/test_app"
|
||
|
pidfile="/var/run/test_app.pid"
|
||
|
command_args=""
|
||
|
command_background=true
|
||
|
|
||
|
|
||
|
depend() {
|
||
|
use logger dns
|
||
|
need net
|
||
|
after firewall
|
||
|
}
|