You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by bu...@apache.org on 2012/11/15 21:10:38 UTC

svn commit: r838477 - in /websites/staging/vcl/trunk/content: ./ docs/UpgradePreviousVersions/UpgradeFrom2.2to2.3.html

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">&quot;INSERT IGNORE provisioningOSinstalltype (provisioningid, OSinstalltypeid) SELECT provisioning.id, OSinstalltype.id FROM provisioning, OSinstalltype WHERE provisioning.name = &#39;libvirt&#39; AND OSinstalltype.name = &#39;vmware&#39;;&quot;</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">&#39;localhost&#39;</span><span class="p">;</span>