X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=filesystem%2Fusr%2Flocal%2Fbin%2Fmyupgrade;h=c206f8f7888127295a9e08864d616360122d2b12;hb=2b981100a8b45f117d6f5c165404937f3c917e8f;hp=ee1890f4415b72a42840d85eebdd3587d0718731;hpb=c7219eb0f2415e8a95c6d7bd98503c61098f9049;p=distro-setup diff --git a/filesystem/usr/local/bin/myupgrade b/filesystem/usr/local/bin/myupgrade index ee1890f..c206f8f 100755 --- a/filesystem/usr/local/bin/myupgrade +++ b/filesystem/usr/local/bin/myupgrade @@ -2,6 +2,8 @@ # Copyright (C) 2019 Ian Kelling # SPDX-License-Identifier: AGPL-3.0-or-later +# usage: set DEBUG env var to anything to output to stdout + # Note: running this inside a cronjob, it wont mail any output if we end # up rebooting from this script. @@ -19,6 +21,13 @@ err() { echo "[$(date +'%Y-%m-%d %H:%M:%S%z')]: $pre: $*" >&2; } hn=$(hostname -f) source /a/bin/bash_unpublished/source-state +d() { + if [[ $DEBUG ]]; then + pee cat "wall -n" + else + echo ok | sed 's/^/myupgrade /' | pee logger "wall -n" + fi +} myreboot() { for x in {30..1}; do echo "pid $$. unattended upgrade, rebooting in $((x*10)) seconds" | wall -n @@ -26,7 +35,7 @@ myreboot() { done for x in {30..1}; do if ! fuser /var/lib/dpkg/lock &> /dev/null; then - echo "pid $$. unattended upgrade, rebooting now" | pee cat "wall -n" + echo "pid $$. unattended upgrade, rebooting now" | d /a/bin/ds/keyscript-on /sbin/reboot exit 0 @@ -34,12 +43,16 @@ myreboot() { echo "pid $$. unattended upgrade reboot waiting 10 seconds for dpkg lock" | wall -n sleep 10 done - echo "pid $$. dpkg locked for 5 minutes, automatic reboot failed" | pee cat "wall -n" + echo "pid $$. dpkg locked for 5 minutes, automatic reboot failed" | d } +# TODO: executed from cron, this doesnt sent an email when we reboot, +# because rebooting from the script stops the ability to send email. +# We should figure some workaround. + if ! out=$(/sbin/needrestart -p 2>&1); then - e "$out" + printf "%s\n\n" "$out" if [[ $HOSTNAME != "$MAIL_HOST" ]]; then myreboot fi