diff options
author | 2003-06-21 09:14:05 +0000 | |
---|---|---|
committer | 2003-06-21 09:14:05 +0000 | |
commit | 147db6207fb02e2076612015783f83d2dba14406 (patch) | |
tree | 28fc3f00ffaad85dccf9dd6a1963ad993fc150b5 | |
parent | count packets and bidirectionally on state entries, allowing for fine-grained (diff) | |
download | wireguard-openbsd-147db6207fb02e2076612015783f83d2dba14406.tar.xz wireguard-openbsd-147db6207fb02e2076612015783f83d2dba14406.zip |
missing $SUDO; from dtucker@zip.com.au
-rw-r--r-- | regress/usr.bin/ssh/reconfigure.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/reconfigure.sh b/regress/usr.bin/ssh/reconfigure.sh index 1de846a7e96..4315f0a40eb 100644 --- a/regress/usr.bin/ssh/reconfigure.sh +++ b/regress/usr.bin/ssh/reconfigure.sh @@ -1,4 +1,4 @@ -# $OpenBSD: reconfigure.sh,v 1.1 2003/06/12 15:43:32 markus Exp $ +# $OpenBSD: reconfigure.sh,v 1.2 2003/06/21 09:14:05 markus Exp $ # Placed in the Public Domain. tid="simple connect after reconfigure" @@ -8,7 +8,7 @@ SSHD=/usr/sbin/sshd start_sshd -kill -HUP `cat $PIDFILE` +$SUDO kill -HUP `cat $PIDFILE` sleep 1 trace "wait for sshd to restart" |