OSCAR-code/Building/Linux/tst_user.sh

11 lines
296 B
Bash
Raw Normal View History

2020-02-26 16:01:54 +00:00
#! /bin/bash
set -e
2020-02-26 16:01:54 +00:00
#
#test USER (must be root) vs SUDO_USER (must be other than root but not empty)
if [ "$USER" != "root" ] || [ "$SUDO_USER" = "root" ] || [ -z "$SUDO_USER" ]; then
echo "Installation must be done as normal user with sudo command. fatal error"
exit
fi
2020-02-26 16:01:54 +00:00
# do nothing