From 85fb48dae3434176607d455a76b73accd1569e2b Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Mon, 18 Nov 2002 21:02:29 +0000 Subject: [PATCH] Remove leading ^ from example of match line in vendor-supplied rules since the ^ is implicit at the beginning of the expressions. --- sbin/devd/devd.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/devd/devd.conf b/sbin/devd/devd.conf index 33d271eb443..e5f6cdabe63 100644 --- a/sbin/devd/devd.conf +++ b/sbin/devd/devd.conf @@ -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"; };