Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    Ohh !! I wasn't aware of that. If the said option is not available in Udev since 148 version, how can I achieve the same goal then ? Commented Mar 24, 2015 at 6:54
  • 1
    You can use GOTO and LABEL to achieve something similar. GOTO and LABEL doesn't work across files, so the best you could do it to have a LABEL at the end of your rules file and replace all the OPTIONS+="last_rule" with GOTO="end_of_file". Instead of being the last rule, this will make it the last rule executed within this file. Rules in other files can be executed after yours. Commented Mar 25, 2015 at 20:37