]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame - debian/smartmontools-bug
20_fix-scsi-disk-detection.diff: patch from Douglas Gilbert to fix scsi disk detection
[mirror_smartmontools-debian.git] / debian / smartmontools-bug
CommitLineData
20259a08
GG
1#!/bin/sh -e
2#
3# reportbug helper for smartmontools
4#
5# check what IDE_TASK options are set in the kernel:
6
7echo "Ouput of $0:" >&3
8CONFIG=/boot/config-`uname -r`
9if [ -r "$CONFIG" ]; then
10 grep IDE_TASK $CONFIG >&3
11else
12 echo "Couldn't parse $CONFIG" >&3
13fi