Date: Sat, 16 May 2009 15:12:56 +0000 (UTC) From: Maxim Konovalov <maxim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r192198 - head/etc Message-ID: <200905161512.n4GFCufF062530@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905161512.n4GFCufF062530>