Skip to content

Instantly share code, notes, and snippets.

@flammable
Created January 15, 2015 00:54
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 flammable/d3dd738891fdb69bacc4 to your computer and use it in GitHub Desktop.
Save flammable/d3dd738891fdb69bacc4 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [[ -n $(/usr/bin/who | /usr/bin/awk '/console/ { print $1}') ]]; then
# Someone is logged in. Installation will proceed.
exit 0
else
# Nobody is logged in. Canceling installation.
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment