diff options
author | Cédric Delmas <cedricde@users.noreply.github.com> | 2015-06-29 09:54:58 +0200 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-07-20 07:50:17 -0400 |
commit | 224a128b0af4a4b8072124514dcef293d156b64e (patch) | |
tree | 1988e725fa732b44c9f0b2ec2f042d4330a27d41 | |
parent | e172381913a5fc1161c9ab2d07d0b919425f178a (diff) |
Process cciss devices
Do not skip the persistent storage rules for cciss devices
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
-rw-r--r-- | rules/60-persistent-storage.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/60-persistent-storage.rules b/rules/60-persistent-storage.rules index 71b8e46ae8..90b62cc490 100644 --- a/rules/60-persistent-storage.rules +++ b/rules/60-persistent-storage.rules @@ -6,7 +6,7 @@ ACTION=="remove", GOTO="persistent_storage_end" SUBSYSTEM!="block", GOTO="persistent_storage_end" -KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*|xvd*|bcache*", GOTO="persistent_storage_end" +KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*|xvd*|bcache*|cciss*", GOTO="persistent_storage_end" # ignore partitions that span the entire disk TEST=="whole_disk", GOTO="persistent_storage_end" |