[PC-BSD Commits] r313 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Fri Jun 8 16:42:07 PDT 2007
Author: kris
Date: 2007-06-09 00:42:07 +0100 (Sat, 09 Jun 2007)
New Revision: 313
Modified:
pcbsd/trunk/PCInstall/pcinstall.ui.h
Log:
Added options to enable bsdstats at bootup
Modified: pcbsd/trunk/PCInstall/pcinstall.ui.h
===================================================================
--- pcbsd/trunk/PCInstall/pcinstall.ui.h 2007-06-08 22:42:23 UTC (rev 312)
+++ pcbsd/trunk/PCInstall/pcinstall.ui.h 2007-06-08 23:42:07 UTC (rev 313)
@@ -1497,7 +1497,7 @@
tmp2 = listBoxKeyLayout->currentText();
tmp2.truncate(tmp.find(" ") );
-
+
// Start with the update system config script
SystemConfig= new QProcess( this );
SystemConfig->addArgument( "/usr/local/pcbsd/scripts/PCBSD.SysConfig.sh" );
@@ -1505,7 +1505,14 @@
SystemConfig->addArgument( tmp2 );
SystemConfig->addArgument(tr("Start"));
+ if ( checkAllowBSDSTATS->isChecked() )
+ {
+ SystemConfig->addArgument("1");
+ } else {
+ SystemConfig->addArgument("0");
+ }
+
connect( SystemConfig, SIGNAL(processExited()), this, SLOT(setupFinishedSlot() ) );
if ( !SystemConfig->start() ) {
More information about the Commits
mailing list