Fix startup script

This commit is contained in:
Hylke Bons 2011-09-25 23:22:20 +02:00
parent f4b0b5c509
commit ffaaaf0123

View file

@ -1,6 +1,6 @@
#!/bin/bash
if [[ $UID -e 0 ]]; then
if [[ $UID -eq 0 ]]; then
echo "Cannot run as root. Things would go utterly wrong."
exit 1
fi