diff options
author | 2014-08-17 14:43:34 +0000 | |
---|---|---|
committer | 2014-08-17 14:43:34 +0000 | |
commit | 24492e870db9765f441ac68bde6c335aec48d72e (patch) | |
tree | 4028586fd5d67f85ac0e101371a198dd4f1754f1 | |
parent | When running interactively, display the output of the "check" action (diff) | |
download | wireguard-openbsd-24492e870db9765f441ac68bde6c335aec48d72e.tar.xz wireguard-openbsd-24492e870db9765f441ac68bde6c335aec48d72e.zip |
Execute /etc/netstart using sh(1) instead of sourcing it.
Committing early to make sure we have time to fix any side-effect.
ok deraadt@
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.438 2014/08/04 20:17:09 naddy Exp $ +# $OpenBSD: rc,v 1.439 2014/08/17 14:43:34 ajacoutot Exp $ # System startup script run by init on autoboot # or after single-user. @@ -371,7 +371,7 @@ if [ -f /etc/resolv.conf.save ]; then mv -f /etc/resolv.conf.save /etc/resolv.conf touch /etc/resolv.conf fi -. /etc/netstart +sh /etc/netstart dmesg > /dev/random # any write triggers an RC4 rekey if [ X"${pf}" != X"NO" ]; then |