[PC-BSD Commits] r19978 - in pcbsd: branches/9.1/overlays/desktop-overlay/etc current/overlays/desktop-overlay/etc
svn at pcbsd.org
svn at pcbsd.org
Fri Oct 26 09:21:03 PDT 2012
Author: kris
Date: 2012-10-26 16:21:02 +0000 (Fri, 26 Oct 2012)
New Revision: 19978
Modified:
pcbsd/branches/9.1/overlays/desktop-overlay/etc/devd.conf
pcbsd/current/overlays/desktop-overlay/etc/devd.conf
Log:
Remove sleeps from sound-dev-changed devd call
Modified: pcbsd/branches/9.1/overlays/desktop-overlay/etc/devd.conf
===================================================================
--- pcbsd/branches/9.1/overlays/desktop-overlay/etc/devd.conf 2012-10-26 15:40:49 UTC (rev 19977)
+++ pcbsd/branches/9.1/overlays/desktop-overlay/etc/devd.conf 2012-10-26 16:21:02 UTC (rev 19978)
@@ -269,7 +269,7 @@
match "subsystem" "CDEV";
match "type" "CREATE";
match "cdev" "mixer[0-9]+";
- action "sleep 2 ; /usr/local/share/pcbsd/scripts/sound-dev-changed.sh add";
+ action "/usr/local/share/pcbsd/scripts/sound-dev-changed.sh add";
};
notify 15 {
@@ -277,7 +277,7 @@
match "subsystem" "CDEV";
match "type" "DESTROY";
match "cdev" "mixer[0-9]+";
- action "sleep 2 ; /usr/local/share/pcbsd/scripts/sound-dev-changed.sh del";
+ action "/usr/local/share/pcbsd/scripts/sound-dev-changed.sh del";
};
notify 5 {
Modified: pcbsd/current/overlays/desktop-overlay/etc/devd.conf
===================================================================
--- pcbsd/current/overlays/desktop-overlay/etc/devd.conf 2012-10-26 15:40:49 UTC (rev 19977)
+++ pcbsd/current/overlays/desktop-overlay/etc/devd.conf 2012-10-26 16:21:02 UTC (rev 19978)
@@ -269,7 +269,7 @@
match "subsystem" "CDEV";
match "type" "CREATE";
match "cdev" "mixer[0-9]+";
- action "sleep 2 ; /usr/local/share/pcbsd/scripts/sound-dev-changed.sh add";
+ action "/usr/local/share/pcbsd/scripts/sound-dev-changed.sh add";
};
notify 15 {
@@ -277,7 +277,7 @@
match "subsystem" "CDEV";
match "type" "DESTROY";
match "cdev" "mixer[0-9]+";
- action "sleep 2 ; /usr/local/share/pcbsd/scripts/sound-dev-changed.sh del";
+ action "/usr/local/share/pcbsd/scripts/sound-dev-changed.sh del";
};
notify 5 {
More information about the Commits
mailing list