dynamic-motd/update-motd.d/04-need-upgrade

11 lines
251 B
Bash
Executable File

#!/bin/bash
. /etc/update-motd.d/colors
n=$(apt-get -qq --just-print upgrade | cut -f 2 -d " " | sort -u | wc -l)
if [[ $n -gt 0 ]]; then
printf $LIGHT_RED
printf " You have %s packages waiting for upgrades." "$n"
printf $NONE"\n\n"
fi