diff options
author | Justin Gottula <[email protected]> | 2021-06-29 18:50:13 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2021-07-02 13:08:42 -0700 |
commit | a5398f8782ebc22930cfbad846decaeb17570e86 (patch) | |
tree | d3c881e1ed7165f17a9934310678a8ae2df436a0 /udev | |
parent | b192a2c0a19133234972b491e9c06093b3d21358 (diff) |
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 <[email protected]>
Reviewed-by: Pavel Zakharov <[email protected]>
Signed-off-by: Justin Gottula <[email protected]>
Closes #12302
Diffstat (limited to 'udev')
-rw-r--r-- | udev/rules.d/60-zvol.rules.in | 2 |
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 60bbff8d2..4447a2538 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" |