From 0f546e13b3b1d485bd7c119819ad72d7e6ae8c5a Mon Sep 17 00:00:00 2001 From: il Date: Wed, 6 May 2026 10:28:03 +0900 Subject: [PATCH] fix(btrfs): update btrfs scrub path update notes: - from '{{ node['home_path'] }}/data' to '{{ storage['btrfs']['mount_point'] }}' --- config/services/systemd/app/btrfs/btrfs-scrub.service.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/services/systemd/app/btrfs/btrfs-scrub.service.j2 b/config/services/systemd/app/btrfs/btrfs-scrub.service.j2 index e502400..12aacf3 100644 --- a/config/services/systemd/app/btrfs/btrfs-scrub.service.j2 +++ b/config/services/systemd/app/btrfs/btrfs-scrub.service.j2 @@ -1,10 +1,10 @@ [Unit] Description=BTRFS auto scrub -ConditionPathIsMountPoint={{ node['home_path'] }}/data -RequiresMountsFor={{ node['home_path'] }}/data +ConditionPathIsMountPoint={{ storage['btrfs']['mount_point'] }} +RequiresMountsFor={{ storage['btrfs']['mount_point'] }} [Service] Type=oneshot -ExecStart=/usr/bin/btrfs scrub start -Bd {{ node['home_path'] }}/data +ExecStart=/usr/bin/btrfs scrub start -Bd {{ storage['btrfs']['mount_point'] }} Nice=19 IOSchedulingClass=idle