OSCAR-code/Building/Linux/tst_user.sh
2020-02-26 11:01:54 -05:00

11 lines
300 B
Bash
Executable File

#! /bin/bash
#set -e
#
#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 "dpkg -i must be launched as normal user with sudo command. fatal error"
# exit
#fi
# do nothing