Last active
January 17, 2018 23:42
-
-
Save kaji-bikash/168422c32e95fde3f78ac022e7235b9f to your computer and use it in GitHub Desktop.
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/bash | |
usage() { echo "Usage: $0 github-username" 1>&2; exit 1; } | |
if [ $# -lt "1" ]; then | |
usage; | |
fi | |
#Assumptions | |
#Default user deploy whose SSH authorized_keys is to modify | |
#SSH authorized_keys is in the format ssh-rsa key | |
home=${home:-deploy} | |
username=$1 | |
name=`curl --silent https://api.github.com/users/$username | grep "name" | awk -F: '{ print $2}' | cut -d "," -f1` | |
prompt() { | |
echo "" | |
echo "You are adding $username - $name" | |
read -n1 -r -p "To avoid unintended additions, press any key to continue..." key | |
#if ! [ "$key" = "y" ]; then | |
# exit 1; | |
#fi | |
} | |
prompt; | |
#get public key from a github | |
KEY="https://github.com/$username.keys" | |
curl --silent $KEY -o /tmp/$username.pub | |
ssh_auth_file=`eval echo ~${home}/.ssh/authorized_keys` | |
##Append found keys to authorized_keys file | |
while read line | |
do | |
echo "$line ${username}" >> ${ssh_auth_file} | |
done <"/tmp/${username}.pub" | |
#Simulate idempotence/de-duplication | |
cat $ssh_auth_file | sort -u -k1,2 > ${ssh_auth_file}.uniq | |
mv ${ssh_auth_file}.uniq ${ssh_auth_file} | |
if [ $? -eq "0" ]; then | |
echo "" | |
echo "SUCCESS : $name - $username added"; exit 0; | |
fi | |
echo "" | |
echo "FAILED: $name - $username not added"; exit 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment