From: Ian Kelling Date: Thu, 18 Apr 2024 18:24:26 +0000 (-0400) Subject: various fixes X-Git-Url: https://iankelling.org/git/?p=distro-setup;a=commitdiff_plain;h=7f94df0eb6002f4fd05ab3fc2d61e94a92ef5a1a various fixes --- diff --git a/brc2 b/brc2 index a28d7b7..aa370ac 100644 --- a/brc2 +++ b/brc2 @@ -2950,7 +2950,7 @@ mdenable() { two=false case $1 in - -2) two=true shift ;; + -2) two=true; shift ;; esac for md; do diff --git a/btrbk-run b/btrbk-run index 7a22d42..93e8dab 100644 --- a/btrbk-run +++ b/btrbk-run @@ -542,7 +542,10 @@ if ! $pull_reexec && [[ $source ]] && $pulla ; then fi fi - +# todo: check if we have no snapshots yet, because I always want to run +# archive instead of run. Likely, I should give an error unless a cli +# override is passed. perhaps check-subvol-stale could give the error. +# see the error message "no snapshots found" in that file. if ! $fast; then # if our mountpoints are from stale snapshots, # it doesn't make sense to do a backup. diff --git a/check-subvol-stale b/check-subvol-stale index af7c60e..9b5e88d 100644 --- a/check-subvol-stale +++ b/check-subvol-stale @@ -162,7 +162,7 @@ for d; do mapfile -t snaps <$tmpf else # no snapshots yet - # TODO: make this an error and override with a cli flag + # TODO: consider making this an error and override with a cli flag echo "$0: warning: no snapshots found at $root_dir/btrbk/$subvol_dir.20*. this is expected for a brand new volume" continue fi diff --git a/distro-end b/distro-end index d81950c..77cfa4b 100755 --- a/distro-end +++ b/distro-end @@ -194,8 +194,11 @@ EOF if $doupdate; then tmpdir=$(mktemp -d) cd $tmpdir + # otherwise we get a warning message: + # W: Download is performed unsandboxed as root as file '/tmp/tmp.UwxbPFG3CZ/debian-archive-keyring_2021.1.1+deb11u1_all.deb' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) + chmod 775 . p download debian-archive-keyring - s dpkg -i debian-archive-keyring + s dpkg -i ./debian-archive-keyring* p update cd - rm -rf $tmpdir diff --git a/mail-cert-cron b/mail-cert-cron index 01fb689..b69bc28 100755 --- a/mail-cert-cron +++ b/mail-cert-cron @@ -25,10 +25,16 @@ trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR [[ $EUID == 0 ]] || exec sudo -E "${BASH_SOURCE[0]}" "$@" +interactive=false case $1 in # For first run, accept host key. Note, known_hosts is saved in /p. -1) opt=(-e 'ssh -oStrictHostKeyChecking=no') + shift + ;; + -i) + interactive=true + shift ;; esac @@ -38,11 +44,22 @@ if [[ -e $f ]]; then source $f fi +try() { + local ret=0 + "$@" || ret=$? + if $interactive && (( ret >=1 )); then + echo "$0: ERROR: exit $ret on: $*" + fi +} + +# note: when certificate is expired, you will get this in /var/log/mail.log when k-9 mail tries to fetch: +# imap-login: Disconnected: Connection closed: SSL_accept() failed: error:0A000416:SSL routines::sslv3 alert certificate unknown: SSL alert number 46 (no auth attempts in 0 secs): user=<>, rip=redacted, lip=10.8.0.4, TLS handshaking: SSL_accept() failed: error:0A000416:SSL routines::sslv3 alert certificate unknown: SSL alert number 46, session=>/etc/dovecot/local.conf <