22 lines
541 B
Text
22 lines
541 B
Text
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
USE_PROCD=1
|
||
|
|
||
|
# starts before dnsmasq starts
|
||
|
START=18
|
||
|
# stops before networking stops
|
||
|
STOP=89
|
||
|
|
||
|
PROG=/usr/sbin/doh-client
|
||
|
CONFIGFILE=/etc/dns-over-https/doh-client.conf
|
||
|
|
||
|
start_service() {
|
||
|
procd_open_instance
|
||
|
procd_set_param command "$PROG" -conf "$CONFIGFILE"
|
||
|
procd_set_param file "$CONFIGFILE"
|
||
|
procd_set_param stdout 1
|
||
|
procd_set_param stderr 1
|
||
|
procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5}
|
||
|
procd_close_instance
|
||
|
}
|