blob: 40719f2eeab9d241c6255f45e809d7a4c14c48fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# udev rule for marsond.
# should be installed to /etc/udev/rules.d/99-marsond.rules
# (but NOT /lib/udev...)
# if you need a user other than "nobody", you can add:
# ENV{MARSOND_USER}="whoever",
# and maybe ENV{MARSOND_GROUP}="somegroup" as well.
# if you need extra arguments to marsond, you can put them in
# the RUN string.
ACTION=="add", ATTRS{idVendor}=="04b4", ATTRS{idProduct}=="0101", RUN+="@SBINDIR@/marsond"
|