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.
11 lines
341 B
11 lines
341 B
#!/bin/bash
|
|
|
|
echo "Welcome to $(hostname)"
|
|
echo "$(date)"
|
|
echo "$(lsb_release -sd) $(uname -rm)"
|
|
upgrades=$(apt list -qq --upgradable 2> /dev/null | wc -l)
|
|
if [[ $upgrades == 0 ]]; then
|
|
printf "All packages are up to date.\n\n"
|
|
else
|
|
printf "$upgrades packages can be upgraded. Run 'apt list --upgradable' to see them.\n\n"
|
|
fi
|