From 984f0abc9267ef3b36beb5dea46973487031ed3a Mon Sep 17 00:00:00 2001 From: Ian Kelling Date: Fri, 6 Feb 2026 00:35:09 -0500 Subject: [PATCH] fix account for optional qr mountpoint --- filesystem/usr/local/bin/mount-latest-subvol | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 ######## -- 2.30.2