check apt upgradable

This commit is contained in:
cronekorkn 2022-09-11 22:17:32 +02:00
parent f19d604213
commit 32e1250d06
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
3 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,15 @@
#!/bin/bash
apt update -qq --silent 2> /dev/null
UPGRADABLE=$(apt list --upgradable -qq 2> /dev/null | cut -d '/' -f 1)
if test "$UPGRADABLE" != ""
then
echo "$(wc -l <<< $UPGRADABLE) package(s) upgradable:"
echo
echo "$UPGRADABLE"
exit 1
else
exit 0
fi

View file

@ -28,6 +28,9 @@ files = {
'/etc/apt/sources.list': {
'content': '# managed'
},
'/usr/lib/nagios/plugins/check_apt_upgradable': {
'mode': '0755',
},
}
actions = {
@ -72,7 +75,7 @@ for host, sources in hosts.items():
'action:apt_update',
},
}
files[destination_path] = {
'source': join(repo.path, 'data', 'apt', 'keys', keyfile),
'content_type': 'binary',
@ -83,7 +86,7 @@ for host, sources in hosts.items():
# create backport pinnings
for package, options in node.metadata.get('apt/packages', {}).items():
for package, options in node.metadata.get('apt/packages', {}).items():
pkg_apt[package] = options
if pkg_apt[package].pop('backports', False):

View file

@ -3,4 +3,13 @@ defaults = {
'packages': {},
'sources': set(),
},
'monitoring': {
'services': {
'apt upgradable': {
'vars.command': '/usr/lib/nagios/plugins/check_apt_upgradable',
'vars.sudo': True,
'check_interval': '1d',
},
},
},
}