Author: fapeeler
Date: Tue Dec  9 20:24:03 2014
New Revision: 1644168

URL: http://svn.apache.org/r1644168
Log:
VCL-764

OS additions

Modified:
    vcl/trunk/mysql/update-vcl.sql
    vcl/trunk/mysql/vcl.sql

Modified: vcl/trunk/mysql/update-vcl.sql
URL: 
http://svn.apache.org/viewvc/vcl/trunk/mysql/update-vcl.sql?rev=1644168&r1=1644167&r2=1644168&view=diff
==============================================================================
--- vcl/trunk/mysql/update-vcl.sql (original)
+++ vcl/trunk/mysql/update-vcl.sql Tue Dec  9 20:24:03 2014
@@ -1487,6 +1487,14 @@ INSERT IGNORE INTO `OS` (`name`, `pretty
 INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('vmwarewin2012', 'Windows Server 2012 
(VMware)', 'windows', 'vmware', 'vmware_images', (SELECT `id` FROM `module` 
WHERE `name` LIKE 'os_win2012'));
 INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('win2012', 'Windows Server 2012 (Bare 
Metal)', 'windows', 'partimage', 'image', (SELECT `id` FROM `module` WHERE 
`name` LIKE 'os_win2012'));
 
+INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('centos6', 'CentOS 6 (Kickstart)', 'linux', 
'kickstart', 'centos6', (SELECT `id` FROM `module` WHERE `name` LIKE 
'os_linux'));
+INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('centos7', 'CentOS 7 (Kickstart)', 'linux', 
'kickstart', 'centos7', (SELECT `id` FROM `module` WHERE `name` LIKE 
'os_linux'));
+INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('rhel7', 'Red Hat Enterprise 7 (Kickstart)', 
'linux', 'kickstart', 'rhel7', (SELECT `id` FROM `module` WHERE `name` LIKE 
'os_linux'));
+INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('rhel7image', 'CentOS 7 Image', 'linux', 
'partimage', 'image', (SELECT `id` FROM `module` WHERE `name` LIKE 'os_linux'));
+INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('centos6image', 'CentOS 6 Image', 'linux', 
'partimage', 'image', (SELECT `id` FROM `module` WHERE `name` LIKE 'os_linux'));
+INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('centos7image', 'CentOS 7 Image', 'linux', 
'partimage', 'image', (SELECT `id` FROM `module` WHERE `name` LIKE 'os_linux'));
+INSERT IGNORE INTO `OS` (`name`, `prettyname`, `type`, `installtype`, 
`sourcepath`, `moduleid`) VALUES ('rhelimage', 'General Red Hat Based Image', 
'linux', 'partimage', 'image', (SELECT `id` FROM `module` WHERE `name` LIKE 
'os_linux'));
+
 -- --------------------------------------------------------
 
 --

Modified: vcl/trunk/mysql/vcl.sql
URL: 
http://svn.apache.org/viewvc/vcl/trunk/mysql/vcl.sql?rev=1644168&r1=1644167&r2=1644168&view=diff
==============================================================================
--- vcl/trunk/mysql/vcl.sql (original)
+++ vcl/trunk/mysql/vcl.sql Tue Dec  9 20:24:03 2014
@@ -1715,7 +1715,13 @@ INSERT IGNORE INTO `OS` (`id`, `name`, `
 (45, 'vmwarewin8', 'Windows 8.x (VMware)', 'windows', 'vmware', 
'vmware_images', 29),
 (46, 'win8', 'Windows 8.x (Bare Metal)', 'windows', 'partimage', 'image', 29),
 (47, 'vmwarewin2012', 'Windows Server 2012 (VMware)', 'windows', 'vmware', 
'vmware_images', 30),
-(48, 'win2012', 'Windows Server 2012 (Bare Metal)', 'windows', 'partimage', 
'image', 30);
+(48, 'win2012', 'Windows Server 2012 (Bare Metal)', 'windows', 'partimage', 
'image', 30),
+(49, 'centos6', 'CentOS 6 (Kickstart)', 'linux', 'kickstart', 'centos6', 5),
+(50, 'centos7', 'CentOS 7 (Kickstart)', 'linux', 'kickstart', 'centos7', 5),
+(51, 'rhel7', 'Red Hat Enterprise 7 (Kickstart)', 'linux', 'kickstart', 
'rhel7', 5),
+(52, 'centos6image', 'CentOS 6 (Bare Metal) Image', 'linux', 'partimage', 
'image', 5),
+(53, 'centos7image', 'CentOS 7 (Bare Metal) Image', 'linux', 'partimage', 
'image', 5),
+(54, 'rhelimage', 'Red Hat Based Image', 'linux', 'partimage', 'image', 5);
 
 -- 
 -- Dumping data for table `OSinstalltype`


Reply via email to