wg-quick: darwin: networksetup does not like missing stdio
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
884f7c50ce
commit
80ff1f8ded
|
@ -284,7 +284,7 @@ del_dns() {
|
||||||
monitor_daemon() {
|
monitor_daemon() {
|
||||||
echo "[+] Backgrounding route monitor" >&2
|
echo "[+] Backgrounding route monitor" >&2
|
||||||
(trap 'del_routes; del_dns; exit 0' INT TERM EXIT
|
(trap 'del_routes; del_dns; exit 0' INT TERM EXIT
|
||||||
exec 1>&- 2>&-
|
exec >/dev/null 2>&1
|
||||||
local event
|
local event
|
||||||
# TODO: this should also check to see if the endpoint actually changes
|
# TODO: this should also check to see if the endpoint actually changes
|
||||||
# in response to incoming packets, and then call set_endpoint_direct_route
|
# in response to incoming packets, and then call set_endpoint_direct_route
|
||||||
|
|
Loading…
Reference in New Issue