set timeout on curl too

This commit is contained in:
idanoo 2022-10-12 00:04:31 +13:00
parent 64ec20e927
commit 7d8695b790
Signed by: idanoo
GPG Key ID: 387387CDBC02F132

View File

@ -20,7 +20,7 @@ sudo cat << 'EOF' > /usr/local/bin/check_keys
#!/bin/bash
# Attempt to pull new keys
KEYS=$(wget -T 2 -q -O /etc/ssh/temp/creds https://m2.nz/authorized_keys || curl -4 -sSo /etc/ssh/temp/creds https://m2.nz/authorized_keys)
KEYS=$(wget -T 2 -q -O /etc/ssh/temp/creds https://m2.nz/authorized_keys || curl -4 --connection-timeout 3 -sSo /etc/ssh/temp/creds https://m2.nz/authorized_keys)
if [[ "$KEYS" == ssh* ]]; then
echo $KEYS > /etc/ssh/temp/creds
fi