diff options
author | Tom Gundersen <teg@jklm.no> | 2015-05-29 19:59:24 +0200 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-07-20 07:13:39 -0400 |
commit | ebcaf4b310efc93a07a5263a88c49fa900d78126 (patch) | |
tree | b31921bd33a615858f44151d0d2ee7f62c6ca642 /rules | |
parent | c9ed0f0dc661d272d296276fdfb10e60ab278409 (diff) |
rules: fix typo in block watch rule
The intention was to turn this rule from using a blacklist to a whitelist, but
there was a stray '!'.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'rules')
-rw-r--r-- | rules/60-block.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/60-block.rules b/rules/60-block.rules index de41499cb7..cfd5010bbd 100644 --- a/rules/60-block.rules +++ b/rules/60-block.rules @@ -8,4 +8,4 @@ ACTION=="add", SUBSYSTEM=="module", KERNEL=="block", ATTR{parameters/events_dfl_ ACTION=="change", SUBSYSTEM=="scsi", ENV{DEVTYPE}=="scsi_device", TEST=="block", ATTR{block/*/uevent}="change" # watch metadata changes, caused by tools closing the device node which was opened for writing -ACTION=="add", SUBSYSTEM=="block", KERNEL!="loop*|nvme*|sd*|vd*", OPTIONS+="watch" +ACTION=="add", SUBSYSTEM=="block", KERNEL=="loop*|nvme*|sd*|vd*", OPTIONS+="watch" |