Date: Sun, 4 Nov 2012 12:30:01 GMT From: Chris Rees <utisoft@gmail.com> To: freebsd-rc@FreeBSD.org Subject: Re: conf/166484: [rc] [patch] rc.initdiskless patch for different major versions living together Message-ID: <201211041230.qA4CU1fT000866@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/166484; it has been noted by GNATS. From: Chris Rees <utisoft@gmail.com> To: "bug-followup@freebsd.org" <bug-followup@freebsd.org> Cc: Subject: Re: conf/166484: [rc] [patch] rc.initdiskless patch for different major versions living together Date: Sun, 4 Nov 2012 12:21:22 +0000 I think this is a great idea. My only concern is the backslashitis in the finding of $rel, and also the fact that it won't catch 10 properly :) Instead of: rel=`expr \`uname -r\` : '\(.\)'` try: rel=$(expr `uname -r` : '\([0-9][0-9]*\)') Does anyone else have any opinions? Chris
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211041230.qA4CU1fT000866>