This file contains hidden or 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
# This script also runs on the VPS. | |
# It handles the bits that require | |
# root access. | |
set -e | |
if [ $(id -u) != 0 ]; then | |
echo "You're not root" | |
exit 1 | |
fi |
OlderNewer