relayd: use config_load+fixup_interface instead of scan_interfaces to speed up startup time
SVN-Revision: 31544
This commit is contained in:
parent
4ea86b956c
commit
ea1d49fc90
1 changed files with 3 additions and 1 deletions
|
@ -26,6 +26,8 @@ start_relay() {
|
||||||
config_get proto "$cfg" proto
|
config_get proto "$cfg" proto
|
||||||
[[ "$proto" == relay ]] || return 0
|
[[ "$proto" == relay ]] || return 0
|
||||||
|
|
||||||
|
fixup_interface "$cfg"
|
||||||
|
|
||||||
SERVICE_DAEMONIZE=1
|
SERVICE_DAEMONIZE=1
|
||||||
SERVICE_WRITE_PID=1
|
SERVICE_WRITE_PID=1
|
||||||
SERVICE_PID_FILE="/var/run/relay-$cfg.pid"
|
SERVICE_PID_FILE="/var/run/relay-$cfg.pid"
|
||||||
|
@ -92,6 +94,6 @@ stop() {
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
include /lib/network
|
include /lib/network
|
||||||
scan_interfaces
|
config_load network
|
||||||
config_foreach start_relay interface
|
config_foreach start_relay interface
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue