diff --git a/roles/config-base-debian-os/files/mymotd.sh b/roles/config-base-debian-os/files/mymotd.sh index 28cf29d..69bd249 100644 --- a/roles/config-base-debian-os/files/mymotd.sh +++ b/roles/config-base-debian-os/files/mymotd.sh @@ -3,9 +3,12 @@ GREEN="\033[0;32m" WHITE="\033[0;37m" RED='\033[0;31m' RESET="\033[0m" -LAST_LOGIN_USER=$(lastlog | tail -n 1 | awk '{print $1}') -LAST_LOGIN_TIME_HOUR=$(lastlog | tail -n 1 | awk '{print $4" "$5" "$6" "$7}') -LAST_LOGIN_IP_FROM_USER=$(lastlog | tail -n 1 | awk '{print $3}') +#LAST_LOGIN_USER=$(lastlog | tail -n 1 | awk '{print $1}') +LAST_LOGIN_USER=$(last |head -n +2 | tail -n 1 | awk '{ print $1 }') +#LAST_LOGIN_TIME_HOUR=$(lastlog | tail -n 1 | awk '{print $4" "$5" "$6" "$7}') +LAST_LOGIN_TIME_HOUR=$(last |head -n +2 | tail -n 1 | awk '{ print $4" "$5" "$6" "$7 }') +#LAST_LOGIN_IP_FROM_USER=$(lastlog | tail -n 1 | awk '{print $3}') +LAST_LOGIN_IP_FROM_USER=$(last |head -n +2 | tail -n 1 | awk '{ print $3 }') UPTIME_SYSTEM=$(uptime -p | tr -d ',') NUMBER_USERS_CONNECTED=$(uptime | awk '{print $5" "$6}' | tr -d ",") LIST_USERS_CONNECTED=$(w | tail -n +2)