You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by fa...@apache.org on 2011/02/03 20:41:35 UTC

svn commit: r1066922 - /incubator/vcl/trunk/mysql/vcl.sql

Author: fapeeler
Date: Thu Feb  3 19:41:35 2011
New Revision: 1066922

URL: http://svn.apache.org/viewvc?rev=1066922&view=rev
Log:
VCL-471

Added support for David's vbox prov module


Modified:
    incubator/vcl/trunk/mysql/vcl.sql

Modified: incubator/vcl/trunk/mysql/vcl.sql
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/mysql/vcl.sql?rev=1066922&r1=1066921&r2=1066922&view=diff
==============================================================================
--- incubator/vcl/trunk/mysql/vcl.sql (original)
+++ incubator/vcl/trunk/mysql/vcl.sql Thu Feb  3 19:41:35 2011
@@ -1286,7 +1286,8 @@ INSERT INTO `module` (`id`, `name`, `pre
 (20, 'provisioning_xCAT_2x', 'xCAT 2.x Provisioning Module', '', 'VCL::Module::Provisioning::xCAT2'),
 (21, 'provisioning_vmware', 'VMware Provisioning Module', '', 'VCL::Module::Provisioning::VMware::VMware'),
 (22, 'state_image', 'VCL Image State Module', '', 'VCL::image'),
-(23, 'base_module', 'VCL Base Module', '', 'VCL::Module');
+(23, 'base_module', 'VCL Base Module', '', 'VCL::Module'),
+(24, 'vbox_module', 'Virtual Box Module', '', 'VCL::Module::Provisioning::vbox');
 
 -- 
 -- Dumping data for table `OS`
@@ -1376,7 +1377,8 @@ INSERT INTO `provisioning` (`id`, `name`
 (3, 'lab', 'Computing Lab', 3),
 (5, 'xcat_21', 'xCAT 2.1', 11),
 (6, 'xcat_2x', 'xCAT 2.x', 20),
-(7, 'vmware', 'VMware', 21);
+(7, 'vmware', 'VMware', 21),
+(8, 'vbox', 'Virtual Box', 24);
 
 --
 -- Dumping data for table `provisioningOSinstalltype`



Re: svn commit: r1066922 - /incubator/vcl/trunk/mysql/vcl.sql

Posted by Kevan Miller <ke...@gmail.com>.
On Feb 3, 2011, at 2:41 PM, fapeeler@apache.org wrote:

> Author: fapeeler
> Date: Thu Feb  3 19:41:35 2011
> New Revision: 1066922
> 
> URL: http://svn.apache.org/viewvc?rev=1066922&view=rev
> Log:
> VCL-471
> 
> Added support for David's vbox prov module

A bit of dyslexia with the Jira number, I think... Also, good practice to be explicit about patches. E.g.:

"Patch from David Hutchins for vbox prov module. Thanks David!"

--kevan