diff options
author | bluhm@openbsd.org <bluhm@openbsd.org> | 2016-09-26 21:34:38 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2016-10-01 06:44:00 +1000 |
commit | ce44c970f913d2a047903dba8670554ac42fc479 (patch) | |
tree | 27d0a9067e7d9669e5422ba6ef2f2cc9b59fbf48 /regress/keys-command.sh | |
parent | 8d0578478586e283e751ca51e7b0690631da139a (diff) |
upstream commit
Allow to run ssh regression tests as root. If the user
is already root, the test should not expect that SUDO is set. If ssh needs
another user, use sudo or doas to switch from root if necessary. OK dtucker@
Upstream-Regress-ID: b464e55185ac4303529e3e6927db41683aaeace2
Diffstat (limited to 'regress/keys-command.sh')
-rw-r--r-- | regress/keys-command.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/keys-command.sh b/regress/keys-command.sh index af68cf15c..9c9ada7c7 100644 --- a/regress/keys-command.sh +++ b/regress/keys-command.sh | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | tid="authorized keys from command" | 4 | tid="authorized keys from command" |
5 | 5 | ||
6 | if test -z "$SUDO" ; then | 6 | if [ -z "$SUDO" -a ! -w /var/run ]; then |
7 | echo "skipped (SUDO not set)" | 7 | echo "skipped (SUDO not set)" |
8 | echo "need SUDO to create file in /var/run, test won't work without" | 8 | echo "need SUDO to create file in /var/run, test won't work without" |
9 | exit 0 | 9 | exit 0 |