Re: svn commit: r235005 - head/usr.sbin/pc-sysinstall/backend

2012-05-05 Thread Doug Barton
On Sat, 5 May 2012, Bruce Evans wrote: On Fri, 4 May 2012, Doug Barton wrote: On 05/04/2012 11:22 AM, Baptiste Daroussin wrote: fetch -s "${FETCHFILE}" >${SIZEFILE} SIZE="`cat ${SIZEFILE}`" - SIZE="`expr ${SIZE} / 1024`" + SIZE=$((SIZE/1024)) Bug; should be '$SIZE/' No this is perfec

Re: svn commit: r235005 - head/usr.sbin/pc-sysinstall/backend

2012-05-05 Thread Bruce Evans
On Fri, 4 May 2012, Doug Barton wrote: On 05/04/2012 11:22 AM, Baptiste Daroussin wrote: fetch -s "${FETCHFILE}" >${SIZEFILE} SIZE="`cat ${SIZEFILE}`" - SIZE="`expr ${SIZE} / 1024`" + SIZE=$((SIZE/1024)) Bug; should be '$SIZE/' No this is perfectly valid Yes, that works, but it's not

Re: svn commit: r235005 - head/usr.sbin/pc-sysinstall/backend

2012-05-04 Thread Garrett Cooper
On May 4, 2012, at 11:22 AM, Baptiste Daroussin wrote: > On Fri, May 04, 2012 at 09:33:38AM -0700, Garrett Cooper wrote: ... >> Bug; should be '$SIZE/' > > No this is perfectly valid Appreciate the clarification. I guess that's what I get for being impatient and not testing my claim before I

Re: svn commit: r235005 - head/usr.sbin/pc-sysinstall/backend

2012-05-04 Thread Doug Barton
On 05/04/2012 11:22 AM, Baptiste Daroussin wrote: >>> > > fetch -s "${FETCHFILE}" >${SIZEFILE} >>> > > SIZE="`cat ${SIZEFILE}`" >>> > > - SIZE="`expr ${SIZE} / 1024`" >>> > > + SIZE=$((SIZE/1024)) >> > >> > Bug; should be '$SIZE/' > No this is perfectly valid Yes, that works, but it's not o

Re: svn commit: r235005 - head/usr.sbin/pc-sysinstall/backend

2012-05-04 Thread Baptiste Daroussin
On Fri, May 04, 2012 at 09:33:38AM -0700, Garrett Cooper wrote: > On May 4, 2012, at 8:31 AM, Josh Paetzel wrote: > > > Author: jpaetzel > > Date: Fri May 4 15:31:35 2012 > > New Revision: 235005 > > URL: http://svn.freebsd.org/changeset/base/235005 > > > > Log: > > Use a unique zpool name dur

Re: svn commit: r235005 - head/usr.sbin/pc-sysinstall/backend

2012-05-04 Thread Garrett Cooper
On May 4, 2012, at 8:31 AM, Josh Paetzel wrote: > Author: jpaetzel > Date: Fri May 4 15:31:35 2012 > New Revision: 235005 > URL: http://svn.freebsd.org/changeset/base/235005 > > Log: > Use a unique zpool name during install, in the case of having another > PC-BSD / FreeBSD zpool on the system

svn commit: r235005 - head/usr.sbin/pc-sysinstall/backend

2012-05-04 Thread Josh Paetzel
Author: jpaetzel Date: Fri May 4 15:31:35 2012 New Revision: 235005 URL: http://svn.freebsd.org/changeset/base/235005 Log: Use a unique zpool name during install, in the case of having another PC-BSD / FreeBSD zpool on the system for another install. Submitted by: kmoore Obtained from: