Last active
May 5, 2016 18:12
-
-
Save Juul/b0388301e07e001df343 to your computer and use it in GitHub Desktop.
sshudo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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