Skip to content

Instantly share code, notes, and snippets.

@Juul
Last active May 5, 2016 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Juul/b0388301e07e001df343 to your computer and use it in GitHub Desktop.
Save Juul/b0388301e07e001df343 to your computer and use it in GitHub Desktop.
sshudo
#!/bin/sh
# Download SSH public key for sudo room user from sudo-humans
BASE_URL="https://sudoroom.org/humans"
MAX_TIME="5" # Fail if download takes longer than this (in seconds)
GET_CMD=""
if [ "$#" -ne "1" ]; then
echo "Usage: sshudo <username>" >&2
exit 1
fi
USERN=$1
FILE="${USERN}.pub"
URL="${BASE_URL}/~${USERN}.pub"
if [ -e "$FILE" ]; then
echo "Error: ${FILE} already exists. Will not overwrite."
exit 1
fi
wget -h > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
GET_CMD="wget --timeout ${MAX_TIME} -O ${FILE} ${URL}"
else
curl -h > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
GET_CMD="curl --max-time ${MAX_TIME} -o ${FILE} ${URL}"
fi
fi
echo "Downloading SSH pub key for ${USERN} to ${FILE}"
$GET_CMD > /dev/null 2>&1
if [ "$?" -ne "0" ]; then
echo "Download failed or took longer than ${MAX_TIME} seconds" 2>&1
else
echo "Downloaded!"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment