| |
---|
| | |
---|
| | |
---|
| | :Author: Tim Daneliuk (tundra@tundraware.com) |
---|
| | |
---|
| | :Version: ``$Id: Deconstructing_Linux_udev_Rules.rst,v 1.126 2013/11/01 13:39:13 tundra Exp $`` |
---|
| | :Version: ``$Id: Deconstructing_Linux_udev_Rules.rst,v 1.127 2013/11/01 13:41:23 tundra Exp $`` |
---|
| | |
---|
| | |
---|
| | Précis |
---|
| | ====== |
---|
| |
---|
| | |
---|
| | |
---|
| | - ``ACTION=="add", KERNEL=="sd*"`` |
---|
| | |
---|
| | ``KERNEL=="sd*" matches any time the kernel emits a message with |
---|
| | ``KERNEL=="sd*"`` matches any time the kernel emits a message with |
---|
| | the string ``sd`` followed by anything. For example, the kernel |
---|
| | sending messages about ``sda``, ``sdb``, ``sdc`` and so on would |
---|
| | all match. But we only want to tune in to these messages when a |
---|
| | drive is being *added*. We want to ignore other kernel messages |
---|
| |
---|
| | |