From: Ian Kelling Date: Fri, 6 Feb 2026 05:35:09 +0000 (-0500) Subject: fix account for optional qr mountpoint X-Git-Url: https://iankelling.org/git/?a=commitdiff_plain;h=984f0abc9267ef3b36beb5dea46973487031ed3a;p=distro-setup fix account for optional qr mountpoint --- diff --git a/filesystem/usr/local/bin/mount-latest-subvol b/filesystem/usr/local/bin/mount-latest-subvol index 9207364..349049b 100755 --- a/filesystem/usr/local/bin/mount-latest-subvol +++ b/filesystem/usr/local/bin/mount-latest-subvol @@ -568,11 +568,15 @@ readonly verbose force if (( $# )); then all_vols=( "$@" ) else - all_vols=(q a o i qr) + all_vols=(q a o i) ar_snaps=(/mnt/root/btrbk/ar.*) if [[ -e /mnt/root/ar ]] || (( ${#ar_snaps[@]} > 0 )); then all_vols+=(ar) fi + qr_snaps=(/mnt/root/btrbk/qr.*) + if [[ -e /mnt/root/qr ]] || (( ${#qr_snaps[@]} > 0 )); then + all_vols+=(qr) + fi fi ##### end command line parsing ########