You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
408 B
14 lines
408 B
#Check if Root
|
|
if [ $UID -ne 0 ]; then
|
|
# This is not a root user:
|
|
echo -ne "\033[36m"
|
|
echo "Welcome, " `whoami`
|
|
echo "This is a protected system! All access is logged."
|
|
echo -ne "\033[0m"
|
|
alias reboot='sudo reboot'
|
|
else
|
|
# Wow, got root:
|
|
echo -ne "\033[36m"
|
|
echo "You are logged in as an admin becareful! This is a restricted system."
|
|
echo -ne "\033[0m"
|
|
fi
|
|
|