Author: buildbot
Date: Thu Nov 15 20:10:37 2012
New Revision: 838477
Log:
Staging update by buildbot for vcl
Modified:
websites/staging/vcl/trunk/content/ (props changed)
websites/staging/vcl/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2to2.3.html
Propchange: websites/staging/vcl/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Nov 15 20:10:37 2012
@@ -1 +1 @@
-1409961
+1409964
Modified:
websites/staging/vcl/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2to2.3.html
==============================================================================
---
websites/staging/vcl/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2to2.3.html
(original)
+++
websites/staging/vcl/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2to2.3.html
Thu Nov 15 20:10:37 2012
@@ -124,6 +124,13 @@
</li>
<li>
+<p>If you want to use libvirt provisioning for KVM, you need to add one entry
to the database that was left out of the release.</p>
+<div class="codehilite"><pre><span class="n">echo</span> <span
class="s">"INSERT IGNORE provisioningOSinstalltype (provisioningid,
OSinstalltypeid) SELECT provisioning.id, OSinstalltype.id FROM provisioning,
OSinstalltype WHERE provisioning.name = 'libvirt' AND
OSinstalltype.name = 'vmware';"</span> <span class="o">|</span>
<span class="n">mysql</span> <span class="n">vcl</span>
+</pre></div>
+
+
+</li>
+<li>
<p>Grant CREATE TEMPORARY TABLES to mysql user
The web code now requires access to create temporary tables in mysql. You need
to grant the user your web code uses to access mysql the "CREATE TEMPORARY
TABLES" permission. Look at the secrets.php file in your web code for the user
and hostname. For example, if your web code is installed at /var/www/html/vcl,
your secrets.php file would be /var/www/html/vcl/.ht-inc/secrets.php. Look for
$vclhost and $vclusername. The secrets.php file might have something like:</p>
<div class="codehilite"><pre><span class="nv">$vclhost</span> <span
class="o">=</span> <span class="s">'localhost'</span><span
class="p">;</span>