Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 May 2015 00:16:33 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r282745 - head/etc/rc.d
Message-ID:  <201505110016.t4B0GXXI062644@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505110016.t4B0GXXI062644>