Package: hdparm Version: 7.7-1ubuntu1 Severity: important Tags: patch The udev rule (debian/hdparm.rules) only matches hd[a-z] devices (e.g. "hda"), but not sd[a-z], e.g. "sda".
This has been reported for Ubuntu at https://launchpad.net/bugs/156893.
diff -Nur hdparm-8.3.orig/debian/hdparm.rules hdparm-8.3/debian/hdparm.rules --- hdparm-8.3.orig/debian/hdparm.rules 2008-03-17 23:51:31.000000000 +0100 +++ hdparm-8.3/debian/hdparm.rules 2008-03-18 00:24:56.090569547 +0100 @@ -1,2 +1,2 @@ -ACTION=="add", SUBSYSTEM=="block", KERNEL=="hd[a-z]", RUN+="/etc/init.d/hdparm hotplug" +ACTION=="add", SUBSYSTEM=="block", KERNEL=="[hs]d[a-z]", RUN+="/etc/init.d/hdparm hotplug"

