svn commit: r192198 - head/etc

Maxim Konovalov maxim at FreeBSD.org
Sat May 16 15:12:57 UTC 2009


Author: maxim
Date: Sat May 16 15:12:56 2009
New Revision: 192198
URL: http://svn.freebsd.org/changeset/base/192198

Log:
  o Add missed semicolon in action script.
  
  PR:		conf/134579
  Submitted by:	Lucius Windschuh
  MFC after:	1 week

Modified:
  head/etc/devd.conf

Modified: head/etc/devd.conf
==============================================================================
--- head/etc/devd.conf	Sat May 16 14:30:08 2009	(r192197)
+++ head/etc/devd.conf	Sat May 16 15:12:56 2009	(r192198)
@@ -132,7 +132,7 @@ attach 100 {
 	match "vendor"	"0x1645";
 	match "product"	"0x8001";
 	match "release"	"0x0101";
-	action "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi /usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/$device-name";
+	action "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi; /usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/$device-name";
 };
 
 # This entry starts the ColdSync tool in daemon mode. Make sure you have an up


More information about the svn-src-all mailing list