]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame - debian/smartmontools-bug
Update changelog
[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
091eb3a2 7echo "Output of $0:" >&3
20259a08
GG
8CONFIG=/boot/config-`uname -r`
9if [ -r "$CONFIG" ]; then
10 grep IDE_TASK $CONFIG >&3
11else
12 echo "Couldn't parse $CONFIG" >&3
13fi