X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=dsa-nagios-checks%2Fchecks%2Fdsa-check-running-kernel;h=bb0fc9628f4c2480d1ea6032ede82220c168ab04;hb=ab928158a9c5902813c0259d0b0640bf8a363ab1;hp=78255f71a55a8f3be19f69ba556290b96c45896b;hpb=8111830cdbcd25d038f9323ae11c9da252a518e3;p=mirror%2Fdsa-nagios.git diff --git a/dsa-nagios-checks/checks/dsa-check-running-kernel b/dsa-nagios-checks/checks/dsa-check-running-kernel index 78255f7..bb0fc96 100755 --- a/dsa-nagios-checks/checks/dsa-check-running-kernel +++ b/dsa-nagios-checks/checks/dsa-check-running-kernel @@ -3,9 +3,10 @@ # Check if the running kernel has the same version string as the on-disk # kernel image. -# Copyright 2008,2009 Peter Palfrader +# Copyright 2008,2009,2011 Peter Palfrader # Copyright 2009 Stephen Gran # Copyright 2010 Uli Martens +# Copyright 2011 Alexander Reichle-Schmehl # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the @@ -45,10 +46,10 @@ get_offset() { print $i,"\n"' < "$file" } -get_avail_linux() { +get_avail() { # This is wrong, but leaves room for when we have to care for machines running # myfirstunix-image-0.1-dsa-arm - local prefix=linux + local prefix="$1"; shift local kervers=$(uname -r) @@ -152,6 +153,22 @@ get_image_linux() { exit 1 } + +freebsd_check_running_version() { + local imagefile="$1"; shift + + local r="$(uname -r)" + local v="$(uname -v| sed -e 's/^#[0-9]*/&:/')" + + local q='@\(#\)FreeBSD '"$r $v" + + if zcat "$imagefile" | strings | egrep -q "$q"; then + echo "OK" + else + echo "not OK" + fi +} + searched="" for on_disk in \ "/boot/vmlinuz-`uname -r`"\ @@ -159,8 +176,18 @@ for on_disk in \ "/boot/kfreebsd-`uname -r`.gz"; do if [ -e "$on_disk" ]; then + if [ ! -x "$(which strings)" ]; then + echo "UNKNOWN: 'strings' command missing, perhaps install binutils?" + exit $UNKNOWN + fi if [ "${on_disk/vmlinu}" != "$on_disk" ]; then on_disk_version="`get_image_linux "$on_disk" | strings | grep 'Linux version' | head -n1`" + if [ -x /usr/bin/lsb_release ] ; then + vendor=$(lsb_release -i -s) + if [ -n "$vendor" ] && [ "xDebian" != "x$vendor" ] ; then + on_disk_version=$( echo $on_disk_version|sed -e "s/ ($vendor [[:alnum:]\.-]\+ [[:alnum:]\.]\+)//") + fi + fi [ -z "$on_disk_version" ] || break on_disk_version="`cat "$on_disk" | strings | grep 'Linux version' | head -n1`" [ -z "$on_disk_version" ] || break @@ -191,14 +218,25 @@ if [ "$(uname -s)" = "Linux" ]; then exit $WARNING fi - ret="$(get_avail_linux)" + ret="$(get_avail linux)" if [ $? = 1 ]; then echo "WARNING: Kernel needs upgrade [$ret]" exit $WARNING fi else - echo "No support for FreeBSD yet" - exit $OK + image_current=$(freebsd_check_running_version $on_disk) + running_version="`uname -s` `uname -r` `uname -v`" + if [ "$image_current" != "OK" ]; then + approx_time="$(date -d "@`stat -c '%Y' "$on_disk"`" +"%Y-%m-%d %H:%M:%S")" + echo "WARNING: Currently running kernel ($running_version) does not match on disk image (~ $approx_time)" + exit $WARNING; + fi + + ret="$(get_avail linux)" + if [ $? = 1 ]; then + echo "WARNING: Kernel needs upgrade [$ret]" + exit $WARNING + fi fi echo "OK: Running kernel matches on disk image: [$running_version]"