From c491a1d0360f20705aa6120cfdce3810fb7023fc Mon Sep 17 00:00:00 2001 From: leper Date: Fri, 1 Aug 2025 14:14:36 +0200 Subject: [PATCH] smartmon.sh support atacam disk on FreeBSD. Signed-off-by: leper --- smartmon.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/smartmon.sh b/smartmon.sh index 64e0421..cdec3a4 100755 --- a/smartmon.sh +++ b/smartmon.sh @@ -198,6 +198,7 @@ for device in ${device_list}; do megaraid*) smartctl -A -d "${type}" "${disk}" | parse_smartctl_scsi_attributes "${disk}" "${type}" ;; nvme*) smartctl -A -d "${type}" "${disk}" | parse_smartctl_scsi_attributes "${disk}" "${type}" ;; usbprolific) smartctl -A -d "${type}" "${disk}" | parse_smartctl_attributes "${disk}" "${type}" ;; + atacam) smartctl -A -d "${type}" "${disk}" | parse_smartctl_attributes "${disk}" "${type}" ;; *) (>&2 echo "disk type is not sat, scsi, nvme or megaraid but ${type}") exit