dynapoint: add new package (fixes #3304)

Dynapoint is a dynamic access point manager

Signed-off-by: Tobias Ilte <tobias.ilte@campus.tu-berlin.de>
Acked-by: Thomas Huehn <thomas.huehn@evernet-eg.de>

- minor whitespace fixes/cleanups
- squashed multiple commits into a single one before merge

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
This commit is contained in:
ascob
2016-12-27 22:31:18 +01:00
committed by Michael Heimpold
parent ea2115ae01
commit 9cbc078e2c
4 changed files with 274 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh /etc/rc.common
START=99
USE_PROCD=1
PROG=/usr/sbin/dynapoint.lua
CONFFILE=/etc/config/dynapoint
start_service() {
procd_open_instance
procd_set_param command $PROG
procd_set_param file $CONFFILE
procd_set_param respawn
procd_close_instance
}