]> git.proxmox.com Git - mirror_smartmontools-debian.git/blob - debian/smartmontools-bug
Refreshed patches and removed patches applied upstream
[mirror_smartmontools-debian.git] / debian / smartmontools-bug
1 #!/bin/sh -e
2 #
3 # reportbug helper for smartmontools
4 #
5 # check what IDE_TASK options are set in the kernel:
6
7 echo "Output of $0:" >&3
8 CONFIG=/boot/config-`uname -r`
9 if [ -r "$CONFIG" ]; then
10 grep IDE_TASK $CONFIG >&3
11 else
12 echo "Couldn't parse $CONFIG" >&3
13 fi