Compare commits

...

2 Commits

Author SHA1 Message Date
Salt e3b59c08c8 Add check_apt_pending 2021-10-03 15:30:02 -05:00
Salt 0d500ca2b9 Add gitignore 2021-10-03 15:29:53 -05:00
2 changed files with 34 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.swp

33
check_apt_pending Executable file
View File

@ -0,0 +1,33 @@
#! /bin/bash
#
# Gets the number of pending APT package updates and returns differently
# depending on how many have yet to be applied
#
threshold_warn=10
threshold_crit=20
# https://askubuntu.com/questions/269606/apt-get-count-the-number-of-updates-available
pending="$(apt-get -q -y --ignore-hold --allow-change-held-packages --allow-unauthenticated -s dist-upgrade | \
/bin/grep ^Inst | \
wc -l)"
if [ -n "$pending" ]; then
if (( pending >= threshold_crit )); then
echo "CRITICAL - $pending package updates pending"
exit 2
elif (( pending >= thresold_warn )); then
echo "WARNING - $pending package updates pending"
exit 1
elif (( pending > 0 )); then
echo "OK - $pending package updates pending"
exit 0
else
echo "OK - No updates available"
exit 0
fi
else
echo "UNKNOWN - Unable to get pending updates"
exit 3
fi