Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
emulab-devel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
emulab
emulab-devel
Commits
e04ff474
Commit
e04ff474
authored
20 years ago
by
Timothy Stack
Browse files
Options
Downloads
Patches
Plain Diff
Add a table for vnodes whose serial consoles should be "mounted" on
another node.
parent
5095498e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
sql/database-create.sql
+12
-0
12 additions, 0 deletions
sql/database-create.sql
sql/database-fill.sql
+4
-0
4 additions, 0 deletions
sql/database-fill.sql
sql/database-migrate.txt
+11
-0
11 additions, 0 deletions
sql/database-migrate.txt
with
27 additions
and
0 deletions
sql/database-create.sql
+
12
−
0
View file @
e04ff474
...
@@ -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`
--
--
...
...
This diff is collapsed.
Click to expand it.
sql/database-fill.sql
+
4
−
0
View file @
e04ff474
...
@@ -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`
...
...
This diff is collapsed.
Click to expand it.
sql/database-migrate.txt
+
11
−
0
View file @
e04ff474
...
@@ -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;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment