aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Gottula <justin@jgottula.com>2021-06-30 01:50:13 +0000
committerBrian Behlendorf <behlendorf1@llnl.gov>2021-07-02 20:08:42 +0000
commita5398f8782ebc22930cfbad846decaeb17570e86 (patch)
treed3c881e1ed7165f17a9934310678a8ae2df436a0
parentb192a2c0a19133234972b491e9c06093b3d21358 (diff)
downloadsrc-a5398f8782ebc22930cfbad846decaeb17570e86.tar.gz
src-a5398f8782ebc22930cfbad846decaeb17570e86.zip
Udev rules: use non-ancient comma syntax
This file is old as dirt. It's entirely possible that commas were optional in udev back at that time. But they're definitely supposed to be there nowadays. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Pavel Zakharov <pavel.zakharov@delphix.com> Signed-off-by: Justin Gottula <justin@jgottula.com> Closes #12302
-rw-r--r--udev/rules.d/60-zvol.rules.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/rules.d/60-zvol.rules.in b/udev/rules.d/60-zvol.rules.in
index 60bbff8d2df0..4447a2538500 100644
--- a/udev/rules.d/60-zvol.rules.in
+++ b/udev/rules.d/60-zvol.rules.in
@@ -3,4 +3,4 @@
# persistent disk links: /dev/zvol/dataset_name
# also creates compatibility symlink of /dev/dataset_name
-KERNEL=="zd*" SUBSYSTEM=="block" ACTION=="add|change" PROGRAM="@udevdir@/zvol_id $tempnode" SYMLINK+="zvol/%c %c"
+KERNEL=="zd*", SUBSYSTEM=="block", ACTION=="add|change", PROGRAM="@udevdir@/zvol_id $tempnode", SYMLINK+="zvol/%c %c"