Give hostapd dir as parameter

This commit is contained in:
PolynomialDivision 2017-06-14 19:38:29 +02:00
parent 29fe04b1f0
commit 976f90efc3
5 changed files with 23 additions and 9 deletions

View file

@ -2,4 +2,5 @@ config 'settings' 'dawn'
option broadcast_ip '192.186.1.255'
option broadcast_port '1025'
option sort_order 'cfsb'
option hostapd_dir '/var/run/hostapd'
option background '0'

View file

@ -14,11 +14,15 @@ start_service()
local broadcast_ip
local broadcast_port
local sort_order
local hostapd_dir
config_load "${NAME}"
config_get broadcast_ip dawn broadcast_ip
config_get broadcast_port dawn broadcast_port
config_get sort_order dawn sort_order
config_get hostapd_dir dawn hostapd_dir
procd_open_instance
echo "$PROG -p $broadcast_port -i $broadcast_ip -o $sort_order"
@ -26,7 +30,7 @@ start_service()
procd_append_param command -p "${broadcast_port}"
procd_append_param command -i "${broadcast_ip}"
procd_append_param command -o "${sort_order}"
procd_append_param command -h "${hostapd_dir}"
procd_set_param stdout 1
procd_set_param stderr 1