diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-02-01 11:19:59 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-02-01 11:40:42 +0530 |
commit | 3fbf31f75cc3d7f1c06e8aa529426ed7073bb20c (patch) | |
tree | 00d460bd047eb392f4273fe5da52bffbf5af0b59 /modules | |
parent | 1639b9467c64402434d41e426fd9e2f9ba8fdd9a (diff) |
modules/pppd: execute scripts sequentially
outgoing dns notify to ns1.he.net will fail if the ipv6 tunnel isn't up
Diffstat (limited to 'modules')
-rw-r--r-- | modules/pppd.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pppd.nix b/modules/pppd.nix index 27b4170..772cb29 100644 --- a/modules/pppd.nix +++ b/modules/pppd.nix @@ -153,7 +153,7 @@ in # see the pppd(8) man page for s in /etc/ppp/${name}.d/*.sh; do - [ -x "$s" ] && "$s" "$@" & + [ -x "$s" ] && "$s" "$@" done ''; }; |