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 | |
# Written by Andy Boutte and David Balderston of howtoinstallghost.com and allaboutghost.com | |
# Modified to include Nginx by Joe Innes | |
######Check to make sure script is being run as root###### | |
if [[ `whoami` != root ]]; then | |
echo "This script must be run as root" | |
exit 1 | |
fi |
NewerOlder