diff options
author | jhb <jhb@FreeBSD.org> | 2002-11-18 21:02:29 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-11-18 21:02:29 +0000 |
commit | 4b330a9d1525612a06630f06a4844edba6a9862e (patch) | |
tree | bd44107347f8a3f8714846f0ee66ce5c47ccff7d /sbin/devd | |
parent | b0b3ab2c2b4c6b4048276f07c5c726caf4dabbc3 (diff) | |
download | FreeBSD-src-4b330a9d1525612a06630f06a4844edba6a9862e.zip FreeBSD-src-4b330a9d1525612a06630f06a4844edba6a9862e.tar.gz |
Remove leading ^ from example of match line in vendor-supplied rules since
the ^ is implicit at the beginning of the expressions.
Diffstat (limited to 'sbin/devd')
-rw-r--r-- | sbin/devd/devd.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/devd/devd.conf b/sbin/devd/devd.conf index 33d271e..e5f6cda 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"; }; |