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:
John Baldwin 2002-11-18 21:02:29 +00:00
parent 5c5145d7f9
commit 85fb48dae3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=107065

View File

@ -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";
};