Browse Source

linknx: add init file

Signed-off-by: Othmar Truniger <github@truniger.ch>
lilik-openwrt-22.03
Othmar Truniger 10 years ago
parent
commit
c7e53198ae
1 changed files with 22 additions and 0 deletions
  1. +22
    -0
      net/linknx/files/linknx.init

+ 22
- 0
net/linknx/files/linknx.init View File

@ -0,0 +1,22 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=98
STOP=10
NAME=linknx
PROG=/usr/bin/$NAME
. /lib/functions.sh
start() {
local conf options
config_load "$NAME"
config_get conf args conf '/etc/linknx.xml'
config_get options args options ''
test -f $conf || cp -p /etc/linknx.xml.dist $conf
service_start $PROG --config=$conf $options
}
stop() {
service_stop $PROG
}

Loading…
Cancel
Save