Remove leading ^ from example of match line in vendor-supplied rules since
the ^ is implicit at the beginning of the expressions.
This commit is contained in:
parent
5c5145d7f9
commit
85fb48dae3
@ -83,10 +83,10 @@ nomatch 10 {
|
||||
action "kldload if_deqna";
|
||||
};
|
||||
attach 10 {
|
||||
device-name "^deqna[0-9]+";
|
||||
device-name "deqna[0-9]+";
|
||||
action "/etc/pccard_ether $device-name start";
|
||||
};
|
||||
detach 10 {
|
||||
device-name "^deqna[0-9]+";
|
||||
device-name "deqna[0-9]+";
|
||||
action "/etc/pccard_ether $device-name stop";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user