2020-11-10 08:50:20 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-21 09:30:05 +00:00
|
|
|
statusfile="/var/tmp/unattended_upgrades.status"
|
2020-11-10 08:50:20 +00:00
|
|
|
if ! [[ -f "$statusfile" ]]
|
|
|
|
then
|
|
|
|
echo "Status file not found"
|
|
|
|
exit 3
|
|
|
|
fi
|
|
|
|
|
|
|
|
mtime=$(stat -c %Y $statusfile)
|
2020-12-10 21:11:28 +00:00
|
|
|
now=$(date +%s)
|
|
|
|
if (( $now - $mtime > 60*60*24*8 ))
|
2020-11-10 08:50:20 +00:00
|
|
|
then
|
|
|
|
echo "Status file is older than 8 days!"
|
|
|
|
exit 3
|
|
|
|
fi
|
|
|
|
|
|
|
|
exitcode=$(cat $statusfile)
|
|
|
|
case "$exitcode" in
|
|
|
|
abort_ssh)
|
|
|
|
echo "Upgrades skipped due to active SSH login"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
0)
|
2022-01-30 10:43:14 +00:00
|
|
|
if [[ -f /var/run/reboot-required ]]
|
|
|
|
then
|
|
|
|
echo "OK, but updates require a reboot"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "OK"
|
|
|
|
exit 0
|
|
|
|
fi
|
2020-11-10 08:50:20 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Last exitcode was $exitcode"
|
|
|
|
exit 2
|
|
|
|
;;
|
|
|
|
esac
|