This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
knxd: add init file
Signed-off-by: Othmar Truniger <github@truniger.ch>
lilik-openwrt-22.03
Othmar Truniger
10 years ago
parent
3a8983f379
commit
f2bdf8e63f
1 changed files
with
22 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+22
-0
net/knxd/files/knxd.init
+ 22
- 0
net/knxd/files/knxd.init
View File
@ -0,0 +1,22 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=90
STOP=20
NAME=knxd
PROG=/usr/bin/$NAME
. /lib/functions.sh
start() {
local options url
config_load "$NAME"
config_get options args options ''
config_get url args url
service_start $PROG $options $url
}
stop() {
service_stop $PROG
}
Write
Preview
Loading…
Cancel
Save