Skip to content
Snippets Groups Projects
Commit e04ff474 authored by Timothy Stack's avatar Timothy Stack
Browse files

Add a table for vnodes whose serial consoles should be "mounted" on

another node.
parent 5095498e
No related branches found
No related tags found
No related merge requests found
...@@ -2127,6 +2127,18 @@ CREATE TABLE virt_simnode_attributes ( ...@@ -2127,6 +2127,18 @@ CREATE TABLE virt_simnode_attributes (
PRIMARY KEY (pid,eid,vname) PRIMARY KEY (pid,eid,vname)
) TYPE=MyISAM; ) TYPE=MyISAM;
--
-- Table structure for table `virt_tiptunnels`
--
CREATE TABLE virt_tiptunnels (
pid varchar(12) NOT NULL default '',
eid varchar(32) NOT NULL default '',
host varchar(32) NOT NULL default '',
vnode varchar(32) NOT NULL default '',
PRIMARY KEY (pid,eid,host,vnode)
) TYPE=MyISAM;
-- --
-- Table structure for table `virt_trafgens` -- Table structure for table `virt_trafgens`
-- --
......
...@@ -716,6 +716,10 @@ REPLACE INTO table_regex VALUES ('virt_programs','dir','text','redirect','defaul ...@@ -716,6 +716,10 @@ REPLACE INTO table_regex VALUES ('virt_programs','dir','text','redirect','defaul
REPLACE INTO table_regex VALUES ('virt_programs','timeout','int','redirect','default:int',0,0,NULL); REPLACE INTO table_regex VALUES ('virt_programs','timeout','int','redirect','default:int',0,0,NULL);
REPLACE INTO table_regex VALUES ('virt_programs','expected_exit_code','int','redirect','default:tinyint',0,0,NULL); REPLACE INTO table_regex VALUES ('virt_programs','expected_exit_code','int','redirect','default:tinyint',0,0,NULL);
REPLACE INTO table_regex VALUES ('users','wikiname','text','regex','^[A-Z]+[a-z]+[A-Z]+[A-Za-z0-9]*$',4,64,NULL); REPLACE INTO table_regex VALUES ('users','wikiname','text','regex','^[A-Z]+[a-z]+[A-Z]+[A-Za-z0-9]*$',4,64,NULL);
REPLACE INTO table_regex VALUES ('virt_tiptunnels','pid','text','redirect','projects:pid',0,0,NULL);
REPLACE INTO table_regex VALUES ('virt_tiptunnels','eid','text','redirect','experiments:eid',0,0,NULL);
REPLACE INTO table_regex VALUES ('virt_tiptunnels','host','text','redirect','virt_nodes:vname',0,0,NULL);
REPLACE INTO table_regex VALUES ('virt_tiptunnels','vnode','text','redirect','virt_nodes:vname',0,0,NULL);
-- --
-- Dumping data for table `testsuite_preentables` -- Dumping data for table `testsuite_preentables`
......
...@@ -2573,3 +2573,14 @@ last_net_act,last_cpu_act,last_ext_act); ...@@ -2573,3 +2573,14 @@ last_net_act,last_cpu_act,last_ext_act);
alter table cameras add fixed_x float NOT NULL default '0'; alter table cameras add fixed_x float NOT NULL default '0';
alter table cameras add fixed_y float NOT NULL default '0'; alter table cameras add fixed_y float NOT NULL default '0';
1.328: Add a table for vnodes whose serial consoles should be
"mounted" on another node.
CREATE TABLE virt_tiptunnels (
pid varchar(12) NOT NULL default '',
eid varchar(32) NOT NULL default '',
host varchar(32) NOT NULL default '',
vnode varchar(32) NOT NULL default '',
PRIMARY KEY (pid,eid,host,vnode)
) TYPE=MyISAM;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment