svn commit: r282745 - head/etc/rc.d

Xin LI delphij at FreeBSD.org
Mon May 11 00:16:33 UTC 2015


Author: delphij
Date: Mon May 11 00:16:32 2015
New Revision: 282745
URL: https://svnweb.freebsd.org/changeset/base/282745

Log:
  Revert r282672.
  
  tr is in /usr and not available at the time hostid is run (must be run
  before FILESYSTEMS).
  
  Reported by:	def

Modified:
  head/etc/rc.d/hostid

Modified: head/etc/rc.d/hostid
==============================================================================
--- head/etc/rc.d/hostid	Sun May 10 22:27:48 2015	(r282744)
+++ head/etc/rc.d/hostid	Mon May 11 00:16:32 2015	(r282745)
@@ -58,7 +58,7 @@ hostid_set()
 
 valid_hostid()
 {
-	uuid=$(echo $1 | tr '[:upper:]' '[:lower:]')
+	uuid=$1
 
 	x="[0-9a-f]"
 	y=$x$x$x$x


More information about the svn-src-head mailing list