git: 68d6abd97143 - main - periodic/801.trim-zfs: Fix daily-trim-zfs-flags
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 01 Jan 2026 17:59:16 UTC
The branch main has been updated by ziaee:
URL: https://cgit.FreeBSD.org/src/commit/?id=68d6abd9714384a41028dc0d5086b4930366bbea
commit 68d6abd9714384a41028dc0d5086b4930366bbea
Author: Alexander Ziaee <ziaee@FreeBSD.org>
AuthorDate: 2026-01-01 17:53:31 +0000
Commit: Alexander Ziaee <ziaee@FreeBSD.org>
CommitDate: 2026-01-01 17:57:15 +0000
periodic/801.trim-zfs: Fix daily-trim-zfs-flags
This variable was named incorrectly, resulting in any specified flags
being silently ignored.
PR: 292074
MFC after: 3 days
Reported by: CrazyMihey@Ya.Ru
Fixes: 493908c4b45c (Add a daily zfs trim script)
---
usr.sbin/periodic/etc/daily/801.trim-zfs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.sbin/periodic/etc/daily/801.trim-zfs b/usr.sbin/periodic/etc/daily/801.trim-zfs
index 17d2ce217c10..9eed9788d016 100755
--- a/usr.sbin/periodic/etc/daily/801.trim-zfs
+++ b/usr.sbin/periodic/etc/daily/801.trim-zfs
@@ -44,7 +44,7 @@ case "$daily_trim_zfs_enable" in
if ! zpool status "${pool}" | grep -q '(trimming)'; then
echo " starting trim of pool '${pool}'"
- zpool trim ${daily_zfs_trim_flags} "${pool}"
+ zpool trim ${daily_trim_zfs_flags} "${pool}"
else
echo " trim of pool '${pool}' already in progress, skipping"
fi