[PC-BSD Commits] r7466 - pcbsd/current/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Mon Aug 30 14:21:46 PDT 2010
Author: kris
Date: 2010-08-30 14:21:46 -0700 (Mon, 30 Aug 2010)
New Revision: 7466
Modified:
pcbsd/current/SysInstaller/sysinstaller.cpp
Log:
Add another check for live media during upgrades
Modified: pcbsd/current/SysInstaller/sysinstaller.cpp
===================================================================
--- pcbsd/current/SysInstaller/sysinstaller.cpp 2010-08-30 21:20:19 UTC (rev 7465)
+++ pcbsd/current/SysInstaller/sysinstaller.cpp 2010-08-30 21:21:46 UTC (rev 7466)
@@ -584,8 +584,8 @@
if ( radioInstallPCBSD->isChecked() ) {
tmpList << "installType=PCBSD";
- // If installing from a package disk, use tar if from live disk then uzip
- if (availPackageData)
+ // If installing from a install media, use tar, otherwise uzip
+ if (!isLiveMode)
tmpList << "packageType=tar";
else
tmpList << "packageType=uzip";
More information about the Commits
mailing list