You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2012/01/20 16:44:47 UTC

svn commit: r1233968 - in /incubator/vcl/trunk/mysql: update-vcl.sql vcl.sql

Author: jfthomps
Date: Fri Jan 20 15:44:46 2012
New Revision: 1233968

URL: http://svn.apache.org/viewvc?rev=1233968&view=rev
Log:
VCL-463
add ability to deploy images as servers

added these states: checkpoint, serverinuse, rebootsoft, reinstall, reboothard, servermodified

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

Modified: incubator/vcl/trunk/mysql/update-vcl.sql
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/mysql/update-vcl.sql?rev=1233968&r1=1233967&r2=1233968&view=diff
==============================================================================
--- incubator/vcl/trunk/mysql/update-vcl.sql (original)
+++ incubator/vcl/trunk/mysql/update-vcl.sql Fri Jan 20 15:44:46 2012
@@ -692,6 +692,14 @@ INSERT IGNORE INTO resourcetype (id, nam
 -- --------------------------------------------------------
 
 -- 
+-- Inserts for table `state`
+--
+
+INSERT IGNORE INTO state (id, name) VALUES (24, 'checkpoint'), (25, 'serverinuse'), (26, 'rebootsoft'), (27, 'reinstall'), (28, 'reboothard'), (29, 'servermodified');
+
+-- --------------------------------------------------------
+
+-- 
 -- Inserts for table `usergroupprivtype`
 --
 

Modified: incubator/vcl/trunk/mysql/vcl.sql
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/mysql/vcl.sql?rev=1233968&r1=1233967&r2=1233968&view=diff
==============================================================================
--- incubator/vcl/trunk/mysql/vcl.sql (original)
+++ incubator/vcl/trunk/mysql/vcl.sql Fri Jan 20 15:44:46 2012
@@ -1672,7 +1672,13 @@ INSERT INTO `state` (`id`, `name`) VALUE
 (22, 'tohpc'),
 (18, 'tomaintenance'),
 (21, 'tovmhostinuse'),
-(20, 'vmhostinuse');
+(20, 'vmhostinuse'),
+(24, 'checkpoint'),
+(25, 'serverinuse'),
+(26, 'rebootsoft'),
+(27, 'reinstall'),
+(28, 'reboothard'),
+(29, 'servermodified');
 
 -- 
 -- Dumping data for table `user`