check apt upgradable
This commit is contained in:
parent
f19d604213
commit
32e1250d06
3 changed files with 29 additions and 2 deletions
15
bundles/apt/files/check_apt_upgradable
Normal file
15
bundles/apt/files/check_apt_upgradable
Normal 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
|
|
@ -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):
|
||||
|
|
|
@ -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',
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue