From: Darren Tucker Date: Tue, 26 Mar 2024 06:13:52 +0000 (+1100) Subject: Ensure /usr/local/etc exists before using in tests. X-Git-Tag: V_9_8_P1~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18dbe8eff647aacb82d7e86b4ce63d5beee11f25;p=thirdparty%2Fopenssh-portable.git Ensure /usr/local/etc exists before using in tests. --- diff --git a/.github/run_test.sh b/.github/run_test.sh index d5fd487d9..c997f7f7e 100755 --- a/.github/run_test.sh +++ b/.github/run_test.sh @@ -9,6 +9,7 @@ set -ex # If we want to test hostbased auth, set up the host for it. if [ ! -z "$SUDO" ] && [ ! -z "$TEST_SSH_HOSTBASED_AUTH" ]; then sshconf=/usr/local/etc + mkdir -p "${sshconf}" hostname | $SUDO tee $sshconf/shosts.equiv >/dev/null echo "EnableSSHKeysign yes" | $SUDO tee $sshconf/ssh_config >/dev/null $SUDO mkdir -p $sshconf