mirror of git://anongit.mindrot.org/openssh.git
Ensure /usr/local/etc exists before using in tests.
This commit is contained in:
parent
5fc1085128
commit
18dbe8eff6
|
@ -9,6 +9,7 @@ set -ex
|
||||||
# If we want to test hostbased auth, set up the host for it.
|
# If we want to test hostbased auth, set up the host for it.
|
||||||
if [ ! -z "$SUDO" ] && [ ! -z "$TEST_SSH_HOSTBASED_AUTH" ]; then
|
if [ ! -z "$SUDO" ] && [ ! -z "$TEST_SSH_HOSTBASED_AUTH" ]; then
|
||||||
sshconf=/usr/local/etc
|
sshconf=/usr/local/etc
|
||||||
|
mkdir -p "${sshconf}"
|
||||||
hostname | $SUDO tee $sshconf/shosts.equiv >/dev/null
|
hostname | $SUDO tee $sshconf/shosts.equiv >/dev/null
|
||||||
echo "EnableSSHKeysign yes" | $SUDO tee $sshconf/ssh_config >/dev/null
|
echo "EnableSSHKeysign yes" | $SUDO tee $sshconf/ssh_config >/dev/null
|
||||||
$SUDO mkdir -p $sshconf
|
$SUDO mkdir -p $sshconf
|
||||||
|
|
Loading…
Reference in New Issue