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>
15 lines
260 B
Bash
15 lines
260 B
Bash
#!/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
|
|
}
|