Skip to content

Instantly share code, notes, and snippets.

@mbtamuli
Created December 19, 2018 04:18
Show Gist options
  • Save mbtamuli/04f04a0be6191d294fef091b0333b89f to your computer and use it in GitHub Desktop.
Save mbtamuli/04f04a0be6191d294fef091b0333b89f to your computer and use it in GitHub Desktop.
EasyEngine v4 user debugging
#!/usr/bin/env bash
users=(
mbtamuli
mrrobot47
kirtangajjar
)
echo "# EasyEngine Developers" | tee -a /root/.ssh/authorized_keys
for user in "${users[@]}"; do
echo "# $user" | tee -a /root/.ssh/authorized_keys
curl -fsSL https://github.com/$user.keys | tee -a /root/.ssh/authorized_keys
done
apt-get update && apt-get install asciinema -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment