From aef74391575dd2fabb51cdab767690f80837de1a Mon Sep 17 00:00:00 2001 From: Kevin Adams Date: Wed, 24 Jun 2026 23:49:02 -0400 Subject: [PATCH] chore: update bug report template with pveversion -v and journald log command Replace bare pveversion with pveversion -v (includes full package list for better triage). Replace grep on /var/log/syslog with journalctl (syslog doesn't exist on Debian 12+/PVE 9). Co-Authored-By: Claude Sonnet 4.6 --- .github/ISSUE_TEMPLATE/bug_report.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 74b4930..7255e4e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,7 +11,7 @@ assignees: TheGrandWazoo | Component | Version | |-----------|---------| | Plugin (`dpkg -l truenas-proxmox freenas-proxmox`) | | -| Proxmox VE (`pveversion`) | | +| Proxmox VE (`pveversion -v`) | | | TrueNAS type | CORE / SCALE | | TrueNAS version | | | Authentication method | Token / Password | @@ -39,7 +39,7 @@ What actually happened. Run the following on your Proxmox node and paste the output: ```bash -grep -i freenas /var/log/syslog | tail -50 +journalctl -u pvedaemon --since "1 hour ago" | grep -i -E "truenas|freenas|iscsi" | tail -50 ``` ```