mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
# $Id$
|
|
# $FreeBSD: src/etc/devd.conf,v 1.26.2.1 2005/09/03 22:49:22 sam Exp $
|
|
|
|
options {
|
|
directory "/etc/devd";
|
|
directory "/usr/local/etc/devd";
|
|
pid-file "/var/run/devd.pid";
|
|
set scsi-controller-regex
|
|
"(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|\
|
|
esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)\
|
|
[0-9]+";
|
|
};
|
|
|
|
# Handle ethernet linkup and linkdown
|
|
notify 0 {
|
|
match "type" "LINK_UP";
|
|
media-type "ethernet";
|
|
action "/bin/echo -n '$subsystem start ' >>/tmp/rc.linkup";
|
|
};
|
|
notify 0 {
|
|
match "type" "LINK_DOWN";
|
|
media-type "ethernet";
|
|
action "/bin/echo -n '$subsystem stop ' >>/tmp/rc.linkup";
|
|
};
|
|
|
|
# When a USB keyboard arrives, attach it as the console keyboard.
|
|
attach 100 {
|
|
device-name "ukbd0";
|
|
action "kbdcontrol -k /dev/ukbd0 < /dev/console";
|
|
};
|
|
detach 100 {
|
|
device-name "ukbd0";
|
|
action "kbdcontrol -k /dev/kbd0 < /dev/console";
|
|
};
|
|
|
|
# Notify all users before beginning emergency shutdown when we get
|
|
# a _CRT or _HOT thermal event and we're going to power down the system
|
|
# very soon.
|
|
notify 10 {
|
|
match "system" "ACPI";
|
|
match "subsystem" "Thermal";
|
|
match "notify" "0xcc";
|
|
action "logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
|
|
};
|