Skip to content

Instantly share code, notes, and snippets.

@davidpdrsn
Last active March 21, 2016 18:47
Show Gist options
  • Select an option

  • Save davidpdrsn/23f60f778691483aaa7f to your computer and use it in GitHub Desktop.

Select an option

Save davidpdrsn/23f60f778691483aaa7f to your computer and use it in GitHub Desktop.
Script I'm building to setup new Ubuntu box
#!/bin/sh
set -e
user=cardistryio
if [[ whoami -eq "root" ]]; then
echo "log-in as root"
exit 1
else
adduser $user
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment