mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue